:root {
    --bg: #080808;
    --text: #eaeaea;
    --red: #c41e3a; /* Deep Cardinal Red */
    --font-header: 'UnifrakturMaguntia', cursive;
    --font-body: 'Syne', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

html{
scroll-behavior:smooth;
    will-change:auto;
}


img{
width:100%;
height:auto;
display:block;
}

/* --- TEXTURE OVERLAY --- */
/* This adds a subtle film grain to the whole site */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/7/76/Noise_pattern_with_intensity_of_136.png");
    opacity: 0.05;
    z-index: 9999;
}

/* --- NAVIGATION --- */
nav{
display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:space-between;
align-items:center;
padding:20px clamp(15px,5vw,50px);
position:absolute;
top:0;
width:100%;
z-index:10;
}

.logo { font-weight: 800; font-size: 1.2rem; letter-spacing: 1px; }
.menu-text { color: #666; font-size: 0.9rem; position: relative; text-align:centre;}

.book-btn {
    margin-left:auto;
    text-decoration: none;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 25px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.book-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow:hidden
    padding: 0 20px;
}

.hero-title {
max-width:90%;
margin:auto;
    font-family:meat;
    font-size: clamp(2.5rem,8vw,7rem);
    line-height: 1;
    z-index: 2;
    position:relative; /* Makes text blend coolly with image */
}

.reveal-text {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 1s ease forwards;
    font-size: clamp(2rem, 6vw, 5rem);
  mix-blend-mode: normal;
}

.reveal-text.red {
    color: #b88a44;
    animation-delay: 0.2s;
mix-blend-mode: normal;
  
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    filter: ;
    opacity: 0.6;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), #000);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-label {
    position: absolute;
    bottom: 40px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.5;
}

/* --- HORIZONTAL SCROLL SECTION --- */
/* This transforms vertical scrolling into horizontal movement */
.gallery-section {
    height: 400vh; /* Make the section very tall so we have room to scroll */
    position: relative;
}

.sticky-parent {
    position: sticky;
    top: 0;
    height: 100vh; /* Lock the view to the screen height */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.horizontal-strip {
    display: flex;
    gap: clamp(40px, 8vw, 100px);
    padding-left: 100px;
    /* This transform is handled by JS, but we set a default */
    transform: translateX(0);
    will-change: transform;
}

.gallery-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block h2 {
    font-size: 5rem;
    line-height: 1;
    font-family: var(--font-body);
    font-weight: 800;
}

.text-block .outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--text);
    font-family: akira;
}

.image-holder {
    width: min(90vw, 400px);
    height: 60vh;
    overflow: hidden;
}

.image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%) contrast(1.1);
    transition: all ease 1s;
}
.image-holder img:hover img{
  scale: 1.2;
}

/* Hover Effect: Color comes back */
.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.caption {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.caption .name { font-weight: 700; color: #b88a44; }

/* --- SERVICES --- */ 
.services {
    padding: 150px 50px;
    background: #0d0d0d;
}

.section-header {
    font-family: akira;
    font-size: 4rem;
    margin-bottom: 80px;
    color: #b88a44;
}

.service-row {
    border-bottomn: 1px solid #333;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: centre;
    transition: 0.3s;
}

.service-row:hover {
    padding-left: 20px;
    border-bottom: 1px solid var(--red);
}

.service-row h3 { font-size: 2rem; }
.service-row p { color: #888; }

/* --- FOOTER --- */
footer {
    padding: 100px 50px 30px;
    background: black;
}

.big-text {
    font-size: 12vw;
    font-family: bebas;
    font-weight: 800;
    line-height: 0.8;
    margin-bottom: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid #333;
    padding-top: 40px;
}

.col h4 { margin-bottom: 20px; color: #666; font-size: 0.9rem; }
.col a, .col p { 
    display: block; 
    color: var(--text); 
    text-decoration: none; 
    margin-bottom: 10px; 
    font-size: 1.2rem; 
}
.col a:hover { color: var(--red); }

.copyright {
    margin-top: 100px;
    font-size: 0.8rem;
    color: #444;
    text-align: center;
}

/* =========================================
   MOBILE & TABLET: THE 101% PERMANENT FIX
   ========================================= */
@media (max-width: 768px) {
    /* THE FIX: 'clip' stops zooming but lets 'sticky' work! */
    html, body {
        overflow-x: clip; 
        max-width: 100vw;
    }

    nav { padding: 15px; }
    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
    .reveal-text { font-size: clamp(2rem, 10vw, 3rem); }

    /* Gallery Base */
    .gallery-section { 
        padding: 0; 
        position: relative;
    }
    
    .sticky-parent {
        position: sticky !important;
        top: 0;
        height: 100vh !important;
        overflow: hidden; /* Hides images outside the screen */
        display: flex;
        align-items: center;
    }

    .horizontal-strip {
        display: flex;
        flex-direction: row; 
        gap: 20px; 
        width: max-content !important; 
        padding-left: 20px;
        padding-right: 20px;
        will-change: transform; /* Makes the animation buttery smooth on phones */
    }

    .gallery-item {
        width: 80vw;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* USER APPROVED TEXT SIZING - DO NOT CHANGE */
    .text-block { width: 85vw; }
    .text-block h2 {
        font-size: 8.5vw !important; 
        line-height: 1.2;
        letter-spacing: 1px;
        white-space: normal;
        overflow-wrap: break-word; 
    }
    .image-holder {
        width: 100%;
        height: 55vh; 
    }

    /* Expertise Section */
    .services { padding: 60px 20px; }
    .section-header {
        font-size: 8.5vw !important; 
        margin-bottom: 40px;
        letter-spacing: 1px;
        text-align: left;
    }
    .service-row {
        display: flex;
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        padding: 25px 0;
        gap: 15px;
    }
    .service-row h3 { font-size: 1.1rem; max-width: 50%; }
    .service-row p { font-size: 0.85rem; text-align: right; max-width: 45%; }

    /* Footer adjustments */
    footer { padding: 60px 20px 30px; }
    .big-text { font-size: 18vw; margin-bottom: 40px; }
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 30px;
    }
    .col:last-child { grid-column: 1 / -1; }
    .col h4 { font-size: 0.8rem; }
    .col a, .col p { font-size: 0.95rem; 
}






@font-face {
font-family: "akira";
src: url(./Akira-Expanded-Demo.otf);
}

@font-face {
font-family: "bebas";
src: url(./BebasNeue-Regular.ttf);
}
