* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', serif;
    background: #fff8ef;
    color: black;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(1, 169, 156, 0.05), rgba(45, 49, 146, 0.05));
    pointer-events: none;
}

header {
    padding: 1.5rem 2.5rem;
   /* Increased padding */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    
}

.logo img {
    height: 60px;  /* Increased from 40px */
}

.center-logo {
    width: 80px;  /* Increased from 50px */
    margin-bottom: 2rem;
}

.logo span {
   
    color: #D5AF80;
    font-size: 1.2rem;
}

.contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact a {
    color: black;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact a:before {
   
    font-size: 1.2rem;
}

.contact a:hover {
    border-color: black;
}

.menu-btn {
    background: none;
    border: 1px solid black;
    color: #D5AF80;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-left: 1rem;
}

.menu-btn:hover {
    background: rgba(213, 175, 128, 0.1);
    transform: scale(1.05);
}

.center-content {
    text-align: center;
    border: 1px solid black;
    padding: 6rem 8rem;
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.center-content::before,
.center-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid black;
    pointer-events: none;
    box-sizing: border-box;
}

.center-content::before {
    transform: translateX(-15px) translateY(-15px);
}

.center-content::after {
    transform: translateX(15px) translateY(15px);
}

@media (max-width: 768px) {
    .center-content {
        padding: 3rem 2rem;
        width: 95%;
    }
    
    .center-content::before,
    .center-content::after {
        transform: none;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 576px) {
    .center-content {
        padding: 2rem 1rem;
        width: 100%;
    }
}
.center-content::before,
.center-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid black;
    
    pointer-events: none;
}

.center-content::before {
    transform: translateX(-15px) translateY(-15px);
}

.center-content::after {
    transform: translateX(15px) translateY(15px);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
}

h1 {
    font-size: 4rem;
    letter-spacing: 1.2rem;
    margin: 2rem 0;
    font-weight: 700;
    /* background: linear-gradient(45deg, #01A99C, #2D3192); */
    background-color: #2D3192;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add these media queries for responsive h1 */
@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
        letter-spacing: 1rem;
    }
}

/* Add text-align property to h1 media queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
        letter-spacing: 0.8rem;
        margin: 1.5rem 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 0.5rem;
        margin: 1rem 0;
        text-align: center;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 1.5rem;
        letter-spacing: 0.3rem;
        text-align: center;
    }
}
.welcome {
    font-size: 1.4rem;
    letter-spacing: 0.4rem;
    margin-bottom: 1.5rem;
    color: black;
    font-weight: 600;
}

.subtitle {
    font-size: 1.4rem;
    letter-spacing: 0.6rem;
    margin: 1.5rem 0;
}

.since {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    margin: 2rem 0 1rem;
}

.dots {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
}

.center-logo {
    width: 50px;
    margin-bottom: 1.5rem;
}


.stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.star-icon {
    width: 8px;
    height: 8px;
    opacity: 0.8;
}

.subtitle {
    font-size: 1.4rem;
    letter-spacing: 0.6rem;
    margin-bottom: 20px;
}

.since {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    margin-top: 20px;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff8ef ;
    transition: right 0.3s ease-in-out;
    padding: 2rem;
    z-index: 9999;
    overflow-y: auto;
}

/* Add close button styles */
.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.close-btn:hover {
    border-color: black;
    transform: rotate(90deg);
}
.side-menu.active {
    right: 0;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-logo {
    width: 120px;
}

.menu-nav ul {
    list-style: none;
}

.menu-nav ul li {
    margin: 1.5rem 0;
}

.menu-nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.menu-nav ul li a:hover {
    color:  black;
    padding-left: 1rem;
}

.menu-footer {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: black;
    font-size: 0.9rem;
}

.menu-footer p {
    margin: 0.8rem 0;
    letter-spacing: 0.1rem;
    color:black;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.welcome-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: white;
    color: black;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.diamond-icon {
    color: #D5AF80;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.welcome-section h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
    font-weight: 400;
    text-align: center;  /* Added this line */
}

.underline {
    width: 200px;
    height: 1px;
    background: #D5AF80;
    margin: 2rem auto;
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
    max-width: 900px;
    margin: 0 auto;
}
.testimonials-section {
    padding: 6rem 1rem;
    background-color: white;
    color: black;
    text-align: center;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* Gap between cards */
    margin: 4rem 0;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: #D5AF80;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-card .read-more {
    color: #D5AF80;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 500;
}

.testimonial-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.05rem;
    margin-top: auto;
}

.view-more {
    background: #44635F;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 6px;
}

.view-more:hover {
    background: #354d4a;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}


.events-section {
    background-color: #ffffff; /* Pure white background */
    padding: 6rem 2rem;
    text-align: center;
}

.diamond-icon {
    font-size: 2rem;
    color: #C9A96E; /* Optional: accent color */
    margin-bottom: 0.5rem;
}

.events-section h2 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.underline {
    width: 80px;
    height: 2px;
    background-color: #C9A96E; /* Optional: stylish underline */
    margin: 0 auto 3rem auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}
.events-grid {
   display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    justify-items: center;
}

.event-card {
    width: 350px; /* Fixed, consistent width */
    height: 600px; /* Medium height for elegance */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f5f5f5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover img {
    transform: scale(1.08);
}

.event-card h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 1.6rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    text-align: center;
    margin: 0;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        max-width: 100%;
        height: 360px;
    }
}

.nav-btn {
    background: transparent;
    border: 2px solid #333;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
}


.nav-btn {
    background: none;
    border: 1px solid black;
    color: black;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #D5AF80;
    color: white;
}
.booking-steps {
    padding: 8rem 2rem;  /* Increased vertical padding */
    
}

.steps-grid {
    gap: 8rem;  /* Increased gap between cards */
    margin: 6rem 0;  /* More vertical space */
}

.step-card {
    padding: 4rem 3rem;  /* Larger internal spacing */
    min-height: 400px;  /* Fixed card height */
    border: 2px solid #D5AF80;  /* Added gold border */
}

.step-number {
    font-size: 5rem;  /* Larger number */
    width: 100px;  /* Bigger circle */
    height: 100px;
    line-height: 100px;
    top: -3rem;  /* Position adjustment */
  
    color: white;
}

.step-card h3 {
    font-size: 2rem;  /* Larger heading */
    margin-bottom: 2rem;
    line-height: 1.4;
}

.step-card p {
    font-size: 1.2rem;  /* Bigger text */
    line-height: 1.8;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .steps-grid {
        gap: 6rem;
    }
    
    .step-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    .steps-grid {
        gap: 4rem;
    }
    
    .step-card {
        padding: 2.5rem 1.5rem;
    }
}



        .booking-steps {
            padding: 6rem 2rem;
            text-align: center;
            background-color: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .diamond-icon {
            font-size: 1.5rem;
            color: #D5AF80;
            margin-bottom: 1rem;
        }

        .booking-steps h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1rem;
            letter-spacing: 0.1rem;
        }

        .underline {
            width: 100px;
            height: 1px;
            background-color: #D5AF80;
            margin: 0 auto 4rem;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6rem; /* Increased gap between cards */
            margin: 4rem 0;
        }

        .step-card {
            padding: 3rem 2rem; /* Adjusted padding for better spacing inside cards */
            position: relative;
            background-color: #F5F5F0;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
        }

        .step-number {
            font-size: 4rem;
            color: #44635F;
            margin-bottom: 2rem;
            font-family: 'Cinzel', serif;
            position: absolute;
            top: -2rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: white;
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .step-card h3 {
            color: #333;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.1rem;
            font-family: 'Cinzel', serif;
        }

        .step-card p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
            font-family: 'Arial', sans-serif;
        }

        @media (max-width: 992px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 4rem; /* Slightly reduced gap for smaller screens */
            }
        }

        @media (max-width: 576px) {
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 3rem; /* Further reduced gap for mobile */
            }
        }
footer {
    background: #0a0a0a;
    padding: 3rem 2rem;
    color: #D5AF80;
    border-top: 1px solid rgba(213, 175, 128, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}



.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.footer-section p, .footer-section a {
    color: #D5AF80;
    line-height: 1.8;
    font-size: 3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
    font-size: medium;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(213, 175, 128, 0.1);
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }
}
.footer-logo {
    width: 120px;
    margin: 0 auto 2rem;
    display: block;
}

@media (max-width: 576px) {
    .footer-logo {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .logo {
        justify-content: center;
        width: 100%;
    }

    .logo img {
        height: 50px;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .contact {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }
}

