:root {
    --accent: #e0c097; /* Soft Gold */
    --bg: #050505;
    --glass: rgba(255, 255, 255, 0.03);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg);
    color: #fff;
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Glass Navbar */
.nav-glass {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.nav-logo, .nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

.active { color: var(--accent); }

/* Majestic Header */
.majestic-header {
    margin-top: 120px;
    text-align: center;
    padding-bottom: 40px;
}

.majestic-header h1 {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
}

.divider {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 15px auto;
}

/* The Gallery - Optimized for Phone */
.gallery-wrapper {
    display: flex;
    flex-direction: column; /* Stacks perfectly on phone */
    gap: 30px;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.image-card {
    position: relative;
    border-radius: 24px; /* Curved aesthetic */
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: reveal 0.8s forwards ease-out;
}

.img-container {
    position: relative;
    aspect-ratio: 4 / 5; /* Majestic portrait ratio */
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.img-desc {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Button Styling */
.loader-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.glow-button {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 15px 50px;
    border-radius: 100px;
    font-size: 10px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s;
}

.glow-button:active {
    transform: scale(0.95);
    background: var(--accent);
    color: #000;
}

/* Animations */
@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Desktop Tweaks */
@media (min-width: 768px) {
    .gallery-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}