:root {
    --bg-color: #1a1c20;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --primary-color: #359ddb;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 500;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #191b21;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.menu-toggle {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

nav a i {
    font-size: 16px;
    color: inherit;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/DSC_0137.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 1000px;
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 60px;
    font-weight: 100;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.hero-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 100;
    /* Thin look */
    margin-bottom: 60px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-item {
    padding: 0 20px;
}

.about-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.about-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-item p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.show-link {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.show-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Gallery Strip */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 500px;
    /* Fixed height for the strip effect */
    margin-top: 40px;
}

.gallery-strip-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 0;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    text-align: right;
    /* Adjust based on visuals */
    width: 200px;
    /* Hacky rotation sizing */
    bottom: 220px;
    /* Adjust pos */
    left: 40px;
}

/* Better vertical text approach */
.vertical-label {
    position: absolute;
    bottom: 20px;
    left: 10px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Project Posters */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.project-poster {
    position: relative;
    aspect-ratio: 2/3;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.project-poster:hover {
    transform: scale(1.02);
}

/* Contact / Footer */
.footer-contact {
    background-color: #101114;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: #333;
    border-radius: 4px;
    /* Adjust to map look */
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.contact-details p {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 15px;
}

.contact-label {
    font-weight: 700;
    color: #fff;
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
}

/* Bottom Bar */
.bottom-bar {
    background-color: #0d0e10;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.bottom-logo {
    height: 40px;
    margin-bottom: 15px;
    display: inline-block;
}

.copyright {
    color: #666;
    font-size: 12px;
}

/* Utility */
.text-center {
    text-align: center;
}

@media (max-width: 768px) {

    .about-grid,
    .contact-grid,
    .gallery-strip,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .gallery-strip {
        height: auto;
    }

    .gallery-strip-item {
        height: 300px;
    }

    .hero-title {
        font-size: 40px;
    }

    /* Mobile menu simplified */
    .menu-toggle {
        display: block;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        margin-left: auto;
        /* Push to right */
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        /* header height */
        left: 0;
        width: 100%;
        background-color: #191b21;
        padding: 20px 0;
        text-align: center;
        gap: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        justify-content: center;
        font-size: 16px;
    }
}

/* Gallery Updates */
/* ... (unchanged desktop styles) ... */

/* Responsive */
@media (max-width: 768px) {
    .gallery-strip {
        flex-direction: column;
        height: auto;
    }

    .gallery-strip-item {
        height: 200px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        /* Brighter border */
        background-color: #222;
        /* Visible background for empty albums */
    }

    .vertical-label {
        transform: translate(-50%, -50%);
        /* Reset rotation */
        bottom: 50%;
        top: 50%;
        z-index: 10;
    }
}

/* Gallery Updates */

/* 5 Columns for the strip */
/* Limitless columns for the strip */
.gallery-strip {
    display: flex;
    width: 100%;
    height: 500px;
    margin-top: 40px;
    background-color: #000;
}

.gallery-strip-item {
    flex: 1;
    min-width: 0;
    /* Prevent overflow */
    position: relative;
    overflow: hidden;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: filter 0.3s, flex-grow 0.3s ease;
    /* Smooth transition if resized */
}

.gallery-strip-item:hover {
    filter: brightness(1.2) !important;
    /* Optional: expand on hover effect? Users didn't ask but it's cool. keeping it simple for now as requested. */
}

.vertical-label {
    position: absolute;
    bottom: 50%;
    /* Center vertically relative to container */
    left: 50%;
    transform: translate(-50%, 50%) rotate(-90deg);
    /* Center and rotate */
    transform-origin: center;
    font-family: var(--font-heading);
    font-size: 24px;
    /* Big vertical text */
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    /* background: rgba(0,0,0,0.5); Optional backplate */
    padding: 5px 20px;
}

/* Modal Styles */
.album-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* White background as per screenshot */
    z-index: 2000;
    overflow-y: auto;
    padding-bottom: 50px;
}

.album-modal.active {
    display: block;
}

.album-header {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

.album-header h2 {
    color: #000;
    font-size: 40px;
    font-family: 'Noto Serif', serif;
    /* Serif font for album title */
    font-weight: 400;
    margin: 0;
}

.close-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #000;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding-top: 30px;
}

.album-img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: opacity 0.3s;
}

.album-img:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-strip {
        flex-direction: column;
        height: auto;
    }

    .gallery-strip-item {
        flex: 0 0 200px;
        height: 200px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        background-color: #222;
    }

    .vertical-label {
        transform: translate(-50%, -50%) rotate(0deg);
        writing-mode: horizontal-tb;
        /* Reset rotation */
        bottom: auto;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        top: 50%;
        left: 50%;
        right: auto;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}