html {
  scroll-behavior: smooth;
}
/* 
 * Canbury Main Styles
 */

@font-face {
    font-family: 'Gill Sans';
    src: url('../fonts/Gill Sans.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Gill Sans';
    src: url('../fonts/Gill Sans Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gill Sans';
    src: url('../fonts/Gill Sans Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gill Sans';
    src: url('../fonts/Gill Sans Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Typography & General */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    margin-top: 0;
    line-height: 1.2;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Header */
.site-header {
    padding: 1rem 0rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header.is-scrolled {
    background: var(--color-bg);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto; 
}
.header-container .main-navigation {
    margin-right: 40%;
    margin-left: 8%;
}
.site-branding .custom-logo {
    width: auto;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4rem;
}

.main-navigation a {
    font-size: 1rem;
    text-transform:capitalize;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 1.25rem;
    border-radius: 40px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid var(--color-btn-bg);
    color: var(--color-btn-bg);
}

.btn-outline:hover,
.btn-outline:active,
.btn-outline:focus,
.btn-outline.is-hovered {
    color: var(--color-btn-text);
    /* background is handled by JS animation now */
}

.btn-solid {
    background: var(--color-btn-bg);
    color: var(--color-btn-text);
    border: 1px solid var(--color-btn-bg);
}

.btn-solid:hover,
.btn-solid:active,
.btn-solid:focus,
.btn-solid.is-hovered {
    color: var(--color-btn-bg);
    /* background removal handled by JS animation if needed */
}

/* The element injected by JS for the slide animation */
.btn-anim {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-btn-bg);
    z-index: -1;
    border-radius: 50px;
}
.btn-solid .btn-anim {
    background: var(--color-bg); /* Reverse color for solid buttons */
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
    right: 60px;
}
.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before { top: -10px; }
.hamburger-inner::after { bottom: -10px; }

/* Hamburger active state */
.hamburger-menu.is-active .hamburger-inner {
    transform: rotate(45deg);
}
.hamburger-menu.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger-menu.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-grow: 1;
}

/* GSAP Utility Classes */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

/* Images Hover & Reveal Animation */
.service-image, 
.work-item, 
.hero-image-wrapper, 
.featured-banner-image, 
.about-full-image,
.single-service-hero-image,
.contact-hero-image,
.single-work-image {
    overflow: hidden; /* Ensures scaled image stays in bounds */
}

/* Hide full width images initially for GSAP reveal */
.hero-image-wrapper, 
.featured-banner-image, 
.about-full-image,
.single-service-hero-image,
.contact-hero-image,
.single-work-image {
    visibility: hidden;
}

.service-image img, 
.work-item img, 
.hero-image-wrapper img, 
.featured-banner-image img, 
.about-full-image img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.service-image:hover img, 
.work-item:hover img, 
.hero-image-wrapper:hover img, 
.featured-banner-image:hover img, 
.about-full-image:hover img {
    transform: scale(1.05);
}

/* Lines */
.vertical-line {
    width: 2px;
    height: 120px;
    background-color: var(--color-text);
    margin: 4rem auto;
    transform-origin: top center;
}
.horizontal-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);;
    margin: 1rem 0 3rem;
    transform-origin: left;
}

/* Footer */
.site-footer {
    padding: 6rem 4rem 2rem;
}

.footer-cta-section {
    text-align: left;
    margin-bottom: 16rem;
}

.footer-title {
    font-size: 6rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size:  1.125rem;
    border-top: 1px solid rgba(212, 199, 180, 0.358);
    padding-top: 2rem;
}

.footer-socials {
   display: flex;
    gap: 3rem;
    font-size: 1.125rem;
    text-decoration: underline;
    font-weight: 300;
}


/* --- About Page Styles --- */

/* About Hero */
.about-hero-section {
    padding: 200px 2rem 6rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.about-hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}
.about-hero-text {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* About Full Image */
.about-full-image {
    width: 100%;
}
.about-full-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Who We Are */
.about-who-section {
    padding: 8rem 4rem;
}
.about-who-container {
       display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    grid-auto-flow: column;
    align-items: center;
}
.who-title {
    font-size: 3rem;
    margin: 0;
    font-weight: 300;
}
.who-text {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    max-width: 700px;
    font-weight: 300;
}

/* Our Approach */
.about-approach-section {
    padding: 0 4rem 6rem;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.approach-image {
    overflow: hidden; /* Ensures scaled image stays in bounds */
    margin-bottom: 1.5rem;
}
.approach-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    display: block;
}
.approach-card:hover .approach-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.approach-title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    font-weight: 400;
}
.approach-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
    font-weight: 300;
}

/* --- Work Page Styles --- */

/* Work Hero */
.work-hero-section {
    padding: 200px 2rem 6rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.work-hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: uppercase;
}
.work-hero-text {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Work Grid */
.work-grid-section {
    padding: 0 4rem 6rem;
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.work-item {
    display: block;
    color: var(--color-text);
    transition: opacity 0.3s ease;
}
.work-item:hover {
    opacity: 0.8;
}
.work-image {
    margin-bottom: 1rem;
}
.work-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}
.work-title {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
}

/* --- Single Work Styles --- */
.single-work-header {
    padding: 200px 2rem 6rem;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}
.single-work-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}
.single-work-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--color-text);
}
.single-work-intro p {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-text);
    font-weight: 300;
}
.single-work-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
}
.single-work-content-section {
    padding: 6rem 2rem;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}
.single-work-description {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 3rem;
}
.single-work-description p {
    margin-bottom: 1.5rem;
}
.single-work-highlights {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    gap: 0.5rem;
}
.single-work-highlights li {
    font-size: 2em;
    font-weight: 300;
    position: relative;
    padding-left: 1rem;
    text-align: left;
}
.single-work-highlights li::before {
    content: "•";
    position: absolute;
    left: -0.5rem;
    color: var(--color-text);
}
.single-work-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 4rem;
    border-top: 1px solid rgba(245, 239, 230, 0.2);
    margin-top: 2rem;
}
.single-work-navigation .nav-previous,
.single-work-navigation .nav-next {
    max-width: 45%;
}
.single-work-navigation a {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: opacity 0.3s ease;
}
.single-work-navigation a:hover {
    opacity: 0.7;
}
.single-work-navigation .nav-next a {
    text-align: right;
    justify-content: flex-end;
}
.single-work-navigation span {
    font-size: 2rem;
    font-weight: 100;
}

/* --- Contact Page Styles --- */
.contact-hero-section {
    text-align: center;
    padding-top: 200px; /* Space for fixed header */
}
.contact-hero-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}
.contact-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.contact-hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin: 0;
}
.contact-hero-image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 2rem;
    text-align: center;
}
.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}
.contact-form-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.contact-form-subheading {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: var(--color-text);
}

/* Contact Form 7 Custom Styling */
.wpcf7 {
    text-align: left;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    margin-bottom: 2rem;
}
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 239, 230, 0.3);
    color: var(--color-text);
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 300;
    font-family: inherit;
    border-radius: 0; /* Remove default styling */
    transition: border-color 0.3s ease;
}
/* Style placeholders */
.wpcf7 ::placeholder {
    color: rgba(245, 239, 230, 0.6);
    opacity: 1;
    font-style: italic;
}
.wpcf7 :-ms-input-placeholder {
    color: rgba(245, 239, 230, 0.6);
    font-style: italic;
}
.wpcf7 ::-ms-input-placeholder {
    color: rgba(245, 239, 230, 0.6);
    font-style: italic;
}

/* Dropdown styling */
.wpcf7 select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23F5EFE6" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0px center;
    padding-right: 30px;
}
.wpcf7 select option {
    background-color: var(--color-bg);
    color: var(--color-text);
}
.wpcf7 select:invalid,
.wpcf7 select option[value=""] {
    color: rgba(245, 239, 230, 0.6);
    font-style: italic;
}

/* Date input styling */
.wpcf7 input[type="date"],
.wpcf7 input.date-to-text {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23F5EFE6" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0px center;
    padding-right: 30px;
    cursor: pointer;
}
.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-bottom-color: var(--color-text);
}
.wpcf7 textarea {
    resize: vertical;
    min-height: 40px;
    margin-bottom: 2rem;
}
.privacy-check {
    margin-bottom: 3rem;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.7);
}
.wpcf7-list-item {
    margin: 0;
}
.wpcf7-list-item-label {
    cursor: pointer;
}
.privacy-check input[type="checkbox"] {
    margin-right: 0.5rem;
}
.wpcf7-submit {
    border: 1px solid var(--color-btn-bg);
    cursor: pointer;
    background-color: var(--color-btn-bg);
    color: var(--color-btn-text);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.wpcf7-submit:hover,
.wpcf7-submit:active,
.wpcf7-submit:focus,
.wpcf7-submit.is-hovered {
    color: var(--color-btn-bg);
}
.wpcf7-submit .btn-anim {
    background: var(--color-bg); /* Reverse color */
}

/* --- Single Service Styles --- */
.single-service-hero {
    text-align: center;
    padding-top: 200px;
}
.single-service-hero-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}
.service-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--color-text);
}
.service-hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}
.service-hero-desc {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.single-service-hero-content .btn {
    margin-bottom: 2rem;
}
.single-service-hero-image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

/* Service Process Section */
.single-service-process {
    padding: 6rem 4rem;
}
.process-header {
    margin-bottom: 4rem;
}
.process-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-text);
}
.process-title {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
}
.process-item {
    display: flex;
    flex-direction: column;
}
.process-item-image {
    margin-bottom: 1.5rem;
}
.process-item-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.process-item-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.process-item-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}

/* --- Homepage Styles --- */

/* Hero */
.hero-section {
    padding: 250px 8rem 8rem;
    text-align: left;
    max-width: 60%;
}
.hero-title {
    font-size: 6rem;
    max-width: 1030px;
    margin: 0 0 1rem;
}
.hero-subtitle {
    font-size: 1.5rem;
    max-width: 950px;
    margin: 0 0 3rem;
    color:var(--color-text);
    line-height: 1.6;
}
.hero-image-wrapper {
    margin: 0;
}
.hero-image-wrapper img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Intro Section */
.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}
.intro-text {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Services */
.services-section {
    padding: 0 4rem 6rem;
}
.section-heading {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* border-bottom: 1px solid var(--color-text); */
    padding-bottom: 0rem;
    margin-bottom: 0rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.service-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 1rem;
}
.service-title {
    font-size: 2rem;
    margin-bottom: 0rem;
    font-weight: 400;
}
.service-subtitle {
    font-size: 1.3rem;
    margin: 5px 0px;
    color: var(--color-text);
    font-weight: 300;
}

/* Featured Banner */
.featured-banner-section {
    position: relative;
    margin-bottom: 6rem;
    
}
.featured-banner-image img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
}
.featured-banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 21, 51, 0.9) 0%, transparent 60%);
    pointer-events: none;
}
.featured-banner-content {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    right: 4rem;
    z-index: 10;
}
.featured-banner-content h2 {
    font-size: 1.73rem;
    font-weight: 400;
    /* margin-bottom: 1.5rem; */
    /* border-bottom: 1px solid rgba(245, 239, 230, 0.2); */
    /* padding-bottom: 1rem; */
}
.featured-banner-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.featured-banner-bottom p {
    max-width: 720px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
}

/* Venues */
.venues-section {
    padding: 0 4rem 6rem;
}
.venues-header .section-heading {
    display: inline-block;
    border: none;
    padding: 0;
    margin: 0;
}
.venues-header {
    margin-bottom: 3rem;
}
.venues-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}
.venues-text-content {
    max-width: 800px;
}
.venues-title {
    font-size: 2rem;
    margin: 0 0 1rem;
    font-weight: 400;
}
.venues-subtitle {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 300;
}
.venues-logos {
    display: block;
    width: 100%;
}
.venues-logos img {
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: #fff;
    margin: 0 auto;
}

/* Instagram */
.instagram-section {
    padding: 0 4rem;
    margin-bottom: 4rem;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* border: 1px solid var(--color-text); */
}
.insta-item {
    aspect-ratio: 1/1;
    /* border: 1px solid var(--color-text); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.insta-item:hover img {
    transform: scale(1.05);
}
.insta-item.placeholder span {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-align: center;
    padding: 1rem;
}
.insta-action {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .site-header {
        padding: 1.5rem 2rem;
    }
    .footer-title {
        font-size: 3rem;
    }
    .hero-section {
        padding: 150px 4rem 4rem;
        max-width: 80%;
    }
    .hero-title {
        font-size: 4rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .intro-text {
        font-size: 1.5rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-who-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .venues-logos {
        grid-auto-flow: row;
        grid-template-columns: repeat(3, 1fr);
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-banner-content {
        left: 2rem;
        right: 2rem;
    }
    .hero-image-wrapper img,
    .featured-banner-image img {
        height: 40vh;
    }

    .featured-banner-bottom, .venues-intro {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    .featured-banner-bottom p, .venues-subtitle{
        padding-bottom: 20px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .btn{
            padding: 1.2rem 1.25rem 1rem 1.25rem;
    }
    .site-header {
        padding: 1rem 2rem;
    }
    .site-branding .custom-logo {
        height: 40px;
    }
    
    /* Mobile Menu */
    .hamburger-menu {
        display: block;
    }
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #021533e6;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem 2rem;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 100;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-wrapper.is-open {
        right: 0;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .header-container .main-navigation {
        margin-right: 0;
        margin-bottom: 3rem;
        margin-left: 0%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .hero-section {
        padding: 120px 2rem 2rem;
        max-width: 100%;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .intro-section {
        padding: 0 2rem;
    }
    .intro-text {
        font-size: 1.3rem;
    }
    .services-section, .venues-section, .instagram-section {
        padding: 0 2rem 4rem;
    }
    .services-grid, .approach-grid, .work-grid {
        grid-template-columns: 1fr;
    }
    .service-title {
        font-size: 1.5rem;
    }
    .about-who-section {
        padding: 4rem 2rem;
    }
    .about-hero-section {
        padding: 120px 2rem 4rem;
    }
    .about-hero-title {
        font-size: 3rem;
    }
    .featured-banner-content h2 {
        font-size: 1.5rem;
    }
    .featured-banner-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .venues-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .venues-title {
        font-size: 1.5rem;
    }
    .venues-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .venues-logos .slick-slide{
        padding: 5px;
    }
    .single-work-image img{
            height: 30vh;
    }
    .footer-socials {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-image-wrapper img,
    .about-full-image img {
        height: 30vh;
    }
    .about-who-container{
        grid-auto-flow: row;
    }
    .single-work-intro p, 
    .single-work-description,
    .about-hero-text,
    .who-text,
    .work-hero-text,
    .single-work-highlights li {
        font-size: 1.5rem;
    }
    .single-work-navigation {
        flex-direction: column;
        gap: 2rem;
        padding: 4rem 2rem;
    }
    .single-work-navigation .nav-previous,
    .single-work-navigation .nav-next {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    .single-work-navigation a {
        justify-content: center;
    }
    .single-work-header {
        padding: 150px 1.5rem 3rem;
    }
    .single-work-title {
        font-size: 2rem;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-hero-image img {
        height: 30vh;
    }
    .single-service-process {
        padding: 4rem 2rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .single-service-hero-image img {
        height: 40vh;
    }
   
    .featured-banner-image img {
        height: 60vh;
    }   
    .site-footer{
        padding: 2rem 2rem 2rem;
    }
    .footer-bottom{
        font-size: 1rem;
    }
}
