* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000; /* Dark background */
    color: lab(96.75% 4.02 1.43); /* Light text color */
    scroll-behavior: smooth;
}

.navbar {
    background: hsl(0, 0%, 0%);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    color: #E0E0E0; /* Consistent with body text */
    font-size: 1.5rem;
}

.logo span {
    font-size: 0.75rem;
    display: block;
    color: #ffffff; /* Gold accent */
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-menu a {
    color: #E0E0E0; /* Light text color */
    text-decoration: none;
    font-weight: 600;
}

.hamburger {
    display: none;
    background: none;
    border: none; 
    color: #E0E0E0; /* Light text color */
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; 
    color: #E0E0E0; /* Light text color */
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; 
}

.btn {
    background: #DAA520; /* Gold button background */
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.icon-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
}

/* Card Style */
.card {
    background: #222222; /* Dark card background */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255,255,255,0.05); /* Light shadow for dark background */
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-caption {
    padding: 10px;
    text-align: center;
    font-weight: 600; 
    color: #000000; /* Gold color */
}

footer {
    background: #000000; /* Black footer */
    color: #ffffff; /* Light text color */
    text-align: center;
    padding: 40px;
}

@media (max-width: 768px) {
    .hamburger { 
        display: block; 
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #000000;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }
    .hero h1 {
        font-size: 2rem;
    }
}