* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-velvet-purple: #4B2C5E;
    --champagne-silk: #F5E6D3;
    --burnished-copper: #B87333;
    --soft-ivory: #FFF8F0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background-color: var(--champagne-silk);
    color: var(--royal-velvet-purple);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bodoni Moda', serif;
    font-weight: 400;
}

header {
    background-color: var(--royal-velvet-purple);
    color: var(--soft-ivory);
    padding: 1rem 2rem;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--soft-ivory);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--soft-ivory);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--burnished-copper);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--soft-ivory);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--royal-velvet-purple);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 248, 240, 0.2);
}

section {
    margin: 2rem 0;
    padding: 2rem;
}

.hero {
    margin-top: 0;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(75, 44, 94, 0.6), rgba(75, 44, 94, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--soft-ivory);
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.2s ease-in;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--burnished-copper);
    background-color: transparent;
    color: var(--burnished-copper);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeIn 1.4s ease-in;
}

.cta-button:hover {
    background-color: var(--burnished-copper);
    color: var(--soft-ivory);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-in;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--royal-velvet-purple);
    margin-bottom: 1rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.image-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--royal-velvet-purple);
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--soft-ivory);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--royal-velvet-purple);
}

form input,
form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--royal-velvet-purple);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

form input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

form button {
    background-color: var(--royal-velvet-purple);
    color: var(--soft-ivory);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: var(--burnished-copper);
}

footer {
    background-color: var(--royal-velvet-purple);
    color: var(--soft-ivory);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-column p,
.footer-column a {
    color: var(--soft-ivory);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-column a:hover {
    color: var(--burnished-copper);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 248, 240, 0.2);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: var(--soft-ivory);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.privacy-popup.active {
    display: block;
}

.privacy-popup p {
    margin-bottom: 1.5rem;
    color: var(--royal-velvet-purple);
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
}

.privacy-popup button {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.privacy-popup .accept-btn {
    background-color: var(--royal-velvet-purple);
    color: var(--soft-ivory);
}

.privacy-popup .accept-btn:hover {
    background-color: var(--burnished-copper);
}

.privacy-popup .decline-btn {
    background-color: transparent;
    color: var(--royal-velvet-purple);
    border: 2px solid var(--royal-velvet-purple);
}

.privacy-popup .decline-btn:hover {
    background-color: var(--royal-velvet-purple);
    color: var(--soft-ivory);
}

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--royal-velvet-purple);
}

.success-page p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.policy-page {
    padding-left: 1rem;
    padding-right: 1rem;
}

.policy-page section {
    margin: 2rem 0;
}

.policy-page h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--royal-velvet-purple);
}

.policy-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--royal-velvet-purple);
}

.policy-page p,
.policy-page ul {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-page ul {
    padding-left: 2rem;
}

.policy-page li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    nav ul {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 320px) {
    header {
        padding: 1rem;
    }
    
    section {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
