@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Cormorant+Garamond:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rich-black: #1B1B1B;
    --antique-gold: #D4AF37;
    --saddle-brown: #8B4513;
    --champagne: #F5E6D3;
    --deep-mahogany: #2C1810;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--champagne);
    background-color: var(--rich-black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poiret One', cursive;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

a {
    color: var(--antique-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--champagne);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: relative;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--deep-mahogany) 100%);
    padding: 15px 0;
    border-bottom: 2px solid var(--antique-gold);
    padding-bottom: 30px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Poiret One', cursive;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo>img{
    width: 60px;
 border-radius: 10px;
}
.logo span{
    color: var(--antique-gold);
font-size: 14px;
}




nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

nav a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--antique-gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--antique-gold);
    color: var(--antique-gold);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 5px 12px;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--deep-mahogany) 0%, var(--rich-black) 50%, var(--saddle-brown) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 30px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--antique-gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--antique-gold);
    color: var(--rich-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--antique-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--champagne);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--deep-mahogany);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--antique-gold);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--antique-gold);
    margin: 10px auto 0;
}

.grid {
    display: grid;
    gap: 25px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: linear-gradient(135deg, var(--deep-mahogany), var(--rich-black));
    border: 1px solid var(--saddle-brown);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--antique-gold), var(--champagne));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 0.1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.card h3 {
    color: var(--antique-gold);
    margin-bottom: 12px;
}

.card i {
    font-size: 2.2rem;
    color: var(--antique-gold);
    margin-bottom: 15px;
}

.about-section {
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--deep-mahogany) 100%);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-image {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.about-image img {
    border: 3px solid var(--antique-gold);
    box-shadow: 10px 10px 0 var(--saddle-brown);
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--antique-gold);
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--champagne);
}

.contact-section {
    background: linear-gradient(135deg, var(--deep-mahogany), var(--rich-black));
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--antique-gold);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--antique-gold);
    margin-top: 3px;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--antique-gold);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--champagne);
}

.contact-form {
    background: rgba(212, 175, 55, 0.03);
    padding: 30px;
    border: 2px solid var(--saddle-brown);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--antique-gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--rich-black);
    border: 1px solid var(--saddle-brown);
    color: var(--champagne);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--antique-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
}

.map-container {
    margin-top: 40px;
    border: 3px solid var(--antique-gold);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

footer {
    background: var(--deep-mahogany);
    padding: 25px 0 15px;
    border-top: 2px solid var(--antique-gold);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--champagne);
}

.copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--saddle-brown);
    font-size: 0.85rem;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--deep-mahogany), var(--rich-black));
    border-top: 3px solid var(--antique-gold);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.privacy-popup p {
    flex: 1;
    min-width: 250px;
    font-size: 0.9rem;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup button {
    padding: 10px 25px;
    font-size: 0.85rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--antique-gold);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--antique-gold);
    color: var(--rich-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-number i {
    font-size: 1.2rem;
    color: var(--rich-black);
}

.step-content h3 {
    color: var(--antique-gold);
}

.testimonials {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 4px solid var(--antique-gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.testimonial-author {
    color: var(--antique-gold);
    font-weight: 600;
    text-align: right;
}

.policy-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: var(--champagne);
    color: var(--rich-black);
}

.policy-page h1 {
    color: var(--deep-mahogany);
    margin-bottom: 20px;
}

.policy-page h2 {
    color: var(--saddle-brown);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.policy-page h3 {
    color: var(--saddle-brown);
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.policy-page p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-page ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-page li {
    margin-bottom: 8px;
}

.policy-page a {
    color: var(--saddle-brown);
    text-decoration: underline;
}

.thank-you-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--antique-gold);
    margin-bottom: 20px;
}

.thank-you-content h1 {
    color: var(--antique-gold);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: var(--deep-mahogany);
        transition: left 0.3s ease;
        z-index: 999;
        padding: 60px 20px 20px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
    }

    header .container {
        justify-content: space-between;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo span{
        display: none;
    }
    body {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .section {
        padding: 40px 0;
    }

    .card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Additional styles for new sections */
.contact-item a {
    color: var(--champagne);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--antique-gold);
}

/* Newsletter form styling */
form input[type="email"] {
    font-family: 'Cormorant Garamond', serif;
}

form input[type="email"]:focus {
    outline: none;
    border-color: var(--antique-gold);
}

/* Social media icons */
.card .fab {
    font-size: 2.2rem;
    color: var(--antique-gold);
    margin-bottom: 15px;
}

/* Enhanced card spacing for better readability */
.card p {
    margin-bottom: 10px;
}

.card p:last-child {
    margin-bottom: 0;
}