:root {
    --primary: #0f172a;
    --accent: #d4af37; /* Gold */
    --text: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --nav-height: 70px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--light);
    color: var(--text);
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* NAVBAR - Fixed & Glassmorphism */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    height: var(--nav-height);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: -1px; }

.navbar nav a {
    color: #cbd5e1;
    margin-left: 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar nav a:hover { color: var(--accent); }

/* HERO - Offset for Fixed Nav */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=2000") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); margin: 0; font-weight: 800; }
.hero p { font-size: 1.2rem; letter-spacing: 4px; text-transform: uppercase; margin-top: 10px; color: #e2e8f0; }

/* SECTIONS */
.section { padding: 100px 10%; text-align: center; }
h2 { font-size: 2.5rem; margin-bottom: 3rem; color: var(--primary); }

/* CARDS - Modern Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: left;
}

.card:hover { transform: translateY(-10px); }
.card img { width: 100%; height: 250px; object-fit: cover; }
.card-body { padding: 25px; }
.card h3 { margin: 0 0 10px 0; font-size: 1.25rem; }
.card p { color: var(--text); opacity: 0.8; font-size: 0.9rem; }

/* GALLERY - Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

.overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; color: white; }

/* FOOTER - Visibility fix */
footer {
    background: var(--primary);
    color: white;
    padding: 80px 10%;
    text-align: center;
}