@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --royal-gold: #D4AF37;
    --deep-velvet-black: #0A0A0A;
    --pearl-white: #F5F5F5;
    --champagne-glow: #F7E7CE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--deep-velvet-black);
    color: var(--pearl-white);
    line-height: 1.6;
    min-width: 320px;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
}

header {
    background-color: var(--deep-velvet-black);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--royal-gold);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
    }
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--pearl-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--royal-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--royal-gold);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--deep-velvet-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

section {
    margin: 2rem 0;
    padding: 0 2rem;
}

section.hero {
    margin-top: 0;
}

.hero {
    position: relative;
    min-height: 80vh;
    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: rgba(10, 10, 10, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--pearl-white);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero {
        min-height: 60vh;
        background-attachment: scroll;
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--royal-gold);
    color: var(--deep-velvet-black);
    margin-right: 1rem;
}

.btn-primary:hover {
    background-color: var(--champagne-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--royal-gold);
    border: 2px solid var(--royal-gold);
}

.btn-secondary:hover {
    background-color: var(--royal-gold);
    color: var(--deep-velvet-black);
}

@media (max-width: 768px) {
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .btn-primary {
        margin-right: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--royal-gold);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(245, 245, 245, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: var(--pearl-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-gold);
    background-color: rgba(245, 245, 245, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--pearl-white);
    font-weight: 400;
}

.checkbox-group label a {
    color: var(--royal-gold);
    text-decoration: underline;
}

footer {
    background-color: var(--deep-velvet-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p,
.footer-column a {
    color: var(--pearl-white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--royal-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--pearl-white);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.privacy-links {
    display: inline-flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.privacy-links a {
    color: var(--royal-gold);
    text-decoration: underline;
    font-size: 0.9rem;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    border-top: 2px solid var(--royal-gold);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.privacy-popup.active {
    display: block;
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy-popup p {
    color: var(--pearl-white);
    margin-bottom: 1rem;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .privacy-popup-buttons {
        flex-direction: column;
    }
}

.policy-page,
.terms-page,
.return-page,
.cookies-page {
    padding-left: 1rem;
    padding-right: 1rem;
}

.policy-page h2,
.terms-page h2,
.return-page h2,
.cookies-page h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-page h3,
.terms-page h3,
.return-page h3,
.cookies-page h3 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-page p,
.terms-page p,
.return-page p,
.cookies-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-page ul,
.terms-page ul,
.return-page ul,
.cookies-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-page li,
.terms-page li,
.return-page li,
.cookies-page li {
    margin-bottom: 0.5rem;
}

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-page h1 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-page p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .success-page h1 {
        font-size: 2rem;
    }

    .success-page p {
        font-size: 1rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.content-section {
    margin: 2rem 0;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    section {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .service-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

