@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --color-creamy-white: #FEFCF8;
    --color-earth-brown: #5D4037;
    --color-soft-gold: #D4AF37;
    --color-deep-indigo: #2C3E50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--color-creamy-white);
    color: var(--color-earth-brown);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-earth-brown);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: var(--color-deep-indigo);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-soft-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#success-message{
    min-height: calc(100vh - 851px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background-color: var(--color-creamy-white);
    border-bottom: 2px solid var(--color-soft-gold);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-earth-brown);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-earth-brown);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 3px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -2px);
}

nav {
    transition: max-height 0.3s ease;
   place-content: center;
   display: flex;
   align-items: center;
   justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

nav a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-soft-gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, var(--color-creamy-white) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-earth-brown);
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-earth-brown);
    color: var(--color-creamy-white);
    border: 2px solid var(--color-earth-brown);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--color-soft-gold);
    border-color: var(--color-soft-gold);
    color: var(--color-earth-brown);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-earth-brown);
}

.btn-secondary:hover {
    background-color: var(--color-earth-brown);
    color: var(--color-creamy-white);
}

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-soft-gold);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background-color: var(--color-creamy-white);
    border: 1px solid rgba(93, 64, 55, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--color-earth-brown);
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--color-earth-brown);
    font-size: 0.95rem;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.workshop-item {
    text-align: center;
}

.workshop-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid var(--color-soft-gold);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content img {
    border-radius: 8px;
    border: 3px solid var(--color-soft-gold);
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-creamy-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(93, 64, 55, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-earth-brown);
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(93, 64, 55, 0.3);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background-color: var(--color-creamy-white);
    color: var(--color-earth-brown);
    transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    outline: none;
    border-color: var(--color-soft-gold);
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group label {
    font-weight: 400;
    margin-bottom: 0;
}

footer {
    background-color: var(--color-earth-brown);
    color: var(--color-creamy-white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--color-soft-gold);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--color-creamy-white);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--color-soft-gold);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--color-soft-gold);
    margin: 0 0.5rem;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-earth-brown);
    color: var(--color-creamy-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.2);
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.privacy-popup p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.privacy-popup .btn {
    background-color: var(--color-soft-gold);
    color: var(--color-earth-brown);
    border-color: var(--color-soft-gold);
    padding: 0.5rem 1.5rem;
}

.privacy-popup .btn:hover {
    background-color: var(--color-creamy-white);
    border-color: var(--color-creamy-white);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .header-content {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 1rem 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(93, 64, 55, 0.1);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    nav a::after {
        display: none;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup-content {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-popup-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    form {
        padding: 1rem;
    }
}

