* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #FA5C01;
    --secondary-color: #FAFAFA;
    --third-color: #D5D1C8;
    --fourth-color: #675845;
    --fifth-color: #000000;
}


@font-face {
    font-family: 'gondens';
    src: url('../fonts/gondens-demo/gondensdemo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Telegraf Regular';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/telegraf-webfont/TelegrafRegular_272984568a25d8528fe2de8b20b29011.woff') format('woff');
}

body {
    background: #ffffff;
    line-height: 1.5;

}

/* This kills the horizontal scroll bug */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Also add this to your existing mobile media query */
@media (max-width: 768px) {
    .nav-links {
        /* ... your existing code ... */
        visibility: hidden; /* Hide it from screen readers/pointers when closed */
        pointer-events: none; /* Prevents accidental clicks while off-screen */
    }

    .nav-links.active {
        visibility: visible;
        pointer-events: auto;
        right: 0 !important;
    }
}

/* --- Navbar Base --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--secondary-color); /* Match your boutique theme */
    position: relative;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 100px; /* Adjust based on your GIF size */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--fifth-color);
    font-weight: 500;
    font-family: 'Telegraf Regular';
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* --- Hamburger Icon --- */
.hamburger {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    /* Prevent scrolling background */
    body.no-scroll {
        overflow: hidden;
        height: 100vh;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 8px; /* The space between your two bars */
        z-index: 2005; 
        position: relative;
    }

    /* THE TWO-BAR X */
    /* Bar 1 moves down half the gap + bar height to center */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }
    /* Bar 2 moves up half the gap + bar height to center */
    .hamburger.active .bar:nth-child(2) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;  
        height: 100vh; 
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active {
        right: 0 !important;
    }
}

.video-section {
    width: 100%;
    height: 100vh; 
    position: relative;
    background-color: #000;
    margin: 0 auto; /* Changed from 20px auto */
    max-width: 1400px;
    overflow: hidden; /* Recommended: prevents the oversized video from bleeding out */
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;    /* Force the video container to be wider than the section */
    height: 56.25vw; /* This is the 16:9 aspect ratio math (9/16 = 0.5625) */
    min-height: 100vh; 
    min-width: 177.77vh; /* Math: 16/9 = 1.77 */
    
    /* This centers the oversized video perfectly */
    transform: translate(-50%, -50%);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Prevents users from clicking "pause" or YouTube links */
}


.content {
    /* Padding all around the section */
    padding: 80px 20px; 
    
    /* Centering the content */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    background-color: var(--third-color); /* Matches the white middle section */
}

.mission-statement {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 800px;
}

.intro-text {
    color: var(--secondary-color); 
    font-size: 1.15rem;
    line-height: 1.7; 
    margin: 0 auto; 
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .content {
        padding: 50px 15px;
    }
    .mission-statement {
        font-size: 2rem;
    }
}


.intro-text {
    font-family: 'Telegraf Regular', sans-serif;
    font-size: 17px;
    color: var(--secondary-color);
    max-width: 800px;
}

.section-title {
    font-family: 'gondens', sans-serif;
    font-size: 26px;
    padding: 20px 15px 10px;
    text-transform: uppercase;
    color: #f05300;
}

h2 {
    font-family: "gondens";
}

h3 {
    font-family: 'Telegraf Regular';
}

p {
    font-family: 'Telegraf Regular';
    font-size: 17px;
    color: black;
    max-width: 800px;
    margin-bottom: 30px;
}

/* Container Setup */
.brand-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--secondary-color); /* The coral/orange background from the image */
    align-items: stretch;
}

/* Left Content Card */
.brand-content {
    flex: 1;
    background-color: var(--third-color);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Right Image Card */
.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the space without stretching */
    border-radius: 20px;
    display: block;
}

/* Typography Styling */
#brandvoice, #strategy {
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.1;
}

#brandtext, #strategytext {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .brand-container {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1; /* Puts image on top for mobile */
    }
}
/* Container Setup */
.concepts-container {
    display: flex;
    flex-direction: row-reverse; /* This puts the text-content on the right */
    gap: 20px;
    padding: 20px;
    background-color: var(--primary-color); /* Signature coral background */
    align-items: stretch;
}

/* Text Content Card (Now on the Right) */
.concepts-content {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image Card (Now on the Left) */
.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Typography Styling - Updated for Concepts */
#vsconcepts {
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.1;
}

#conceptstext {
    color: var(--fourth-color);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 95%; /* Adjusted for right-side flow */
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .concepts-container {
        flex-direction: column; /* Stacks image on top of text */
    }
    
    .hero-image {
        order: -1; /* Ensures image stays on top when stacked */
    }
}
/* --- Projects Layout --- */
.projects {
    padding: 60px 0;
    overflow: hidden; /* Prevents horizontal scrollbars on the main page */
}

.projects h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    padding-left: 40px;
    color: var(--secondary-color);
}
.projects h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);}

/* --- Horizontal Scroll Feature --- */
.card-grid {
    display: flex;
    gap: 25px;
    padding: 0 40px 40px 40px; /* Padding for the sides and bottom */
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Makes the scroll feel "snappy" */
    
    /* Hide scrollbar for a clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.card-grid::-webkit-scrollbar {
    display: none;
}

/* --- Individual Card Styling --- */
.card {
    flex: 0 0 450px; /* Fixed width for the cards */
    display: flex;
    flex-direction: column;
    gap: 15px;
    scroll-snap-align: start;
}

.card-image-wrapper {
    width: 100%;
    height: 550px;
    border-radius: 40px; /* The rounded corners you like */
    overflow: hidden;
    background-color: #ddd;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

/* --- Text & Button Layout --- */
.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
}

.card-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-info p {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
}

/* --- The Specific Button --- */
.btn-view {
    font-family: 'Telegraf Regular';
    padding: 10px 22px;
    background-color: var(--fourth-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: #444;
    transform: translateX(5px); /* Moves slightly right on hover */
}


/* --- Gallery Layout --- */
.gallery-wrapper {
    padding: 60px 0;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    padding-left: 40px;
}

/* --- Horizontal Scroll Feature --- */
.gallery-container {
    display: flex;
    gap: 25px;
    padding: 0 40px 40px 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide for Firefox */
    -ms-overflow-style: none; /* Hide for IE */
}

.gallery-container::-webkit-scrollbar {
    display: none; /* Hide for Chrome/Safari */
}

/* --- Individual Item (600x400) --- */
.gallery-item {
    flex: 0 0 400px;         /* Fixed Width */
    height: 500px;           /* Fixed Total Height */
    display: flex;
    flex-direction: column;
    background-color: #ffffff; 
    border-radius: 40px;     /* Signature Curves */
    overflow: hidden;        /* Clips everything to the radius */
    scroll-snap-align: start;
    transition: transform 0.4s ease;
}

/* Image Portion - 300px */
.image-box {
    width: 100%;
    height: 400px;           /* Fixed Height */
    overflow: hidden;
    flex-shrink: 0;          /* Prevents image from expanding */
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .image-box img {
    transform: scale(1.05);
}

/* Text Portion (The Extension) - 100px */
.item-text {
    width: 100%;
    height: 100px;           /* Fixed Height for the extension */
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers the text */
    background-color: #ffffff;
    box-sizing: border-box;
}

.item-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.item-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
/* Modal Styling */
.modal-box {
    border: none;
    border-radius: 30px;
    padding: 30px;
    margin: auto;
    width: 90%;
    max-width: 400px;
}

.modal-box::backdrop {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}

.item-text {
    display: inline-block;
    width: 50%;
    height: 100%;
    vertical-align: top;
    padding: 20px;
    white-space: normal; 
    background: white;
    font-family: 'Telegraf Regular', sans-serif;
    font-size: 16px; 
    color: black;
}

.item-title {
    font-family: 'gondens', sans-serif;
    font-size: 22px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 100px;
    background: black;
    border: none;
    cursor: pointer;
    z-index: 100;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.scroll-btn:hover {
    background-color: black;
    width: 65px;
}

.scroll-button-left {
    left: 0;
}

.scroll-button-right {
    right: 0;
}

.scroll-btn img {
    width: 25px;
    filter: invert(1);
}

.modal-box {
    margin: auto;
    padding: 25px;
    border: 3.5px solid black;
    width: 90%;
    max-width: 500px;
    font-family: 'Telegraf Regular', sans-serif;
}

.modal-box::backdrop {
    background: rgba(0, 0, 0, 0.7);
}

.modal-title {
    font-family: 'gondens', sans-serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.modal-input {
    width: 100%;
    height: 100px;
    margin-bottom: 15px;
    padding: 10px;
    border: 2px solid #ccc;
    resize: none;
}

.close-btn {
    background: black;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.close-btn:hover {
    background: #f05300;
}

body {
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D5D1C8; 
    opacity: 1;
    z-index: -1;
}

.section-title {
    font-size: 60px;
    line-height: 2; /* Standard tight look */
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
  }

@media (max-width: 768px) {
    .section-title {
      /* Adjust this number to increase/decrease the gap between lines */
      line-height: 2; 
      
      /* Optional: increase space between the title and the cards below it */
      margin-bottom: 40px; 
      
      /* Optional: slightly smaller font so it fits better on narrow screens */
      font-size: 60px; 
    }
  }


/* --- Footer Container --- */
.main-footer {
    padding: 80px 20px;
    background-color: var(--third-color); /* The exact cream/beige from your screenshot */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Perfect vertical spacing */
}

/* --- Social & Email Icons --- */
.footer-socials {
    display: flex;
    gap: 15px; /* Spacing between the icons */
    font-size: 3rem; /* Size of the icons */
}
/* Force icons to have a size and color */

.footer-socials a {
    color: var(--secondary-color); /* Dark muted brown/gray from the image */
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Subtle hover effect for a premium feel */
.footer-socials a:hover {
    opacity: 0.7;
    transform: translateY(-3px);
}

/* --- Typography & Copyright --- */
.footer-content {
    font-family: 'gondens'; /* Clean, modern sans-serif */
    color: var(--secondary-color); /* Soft gray for the copyright text */
    font-size: 0.85rem;
    letter-spacing: 0.3px; /* Slight spacing for readability */
    line-height: 1.6;
}
.footer-title {
    color: var(--secondary-color);
}
.footer-content p {
    color: var(--secondary-color);
    margin: 0;
}

/* If you add privacy links later, this handles their styling */
.footer-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: var(--secondary-color);
}

    







