/* Bin Castle Coffee House - Enhanced Styling */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-gold: #bd9e55;
    --border-light: #e8e8e1;
    --text-dark: #000000;
    --text-gray: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --overlay-dark: rgba(0, 0, 0, 0.62);
    --vh: 1vh;
}

/* Typography */
body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.025em;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 35px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    padding: 0;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.header.no-transition {
    transition: none;
}

.header.no-transition .logo-image,
.header.no-transition .nav-link,
.header.no-transition .header-link,
.header.no-transition .mobile-menu-toggle span {
    transition: none;
}

.header.scrolled {
    background-color: var(--bg-white);
    border-bottom-color: var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo-image {
    filter: none;
}

.header.scrolled .nav-link,
.header.scrolled .header-link {
    color: var(--text-dark);
}

.header.scrolled .nav-link.active {
    color: var(--primary-gold);
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

.header.transparent {
    background-color: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

.header.transparent .logo-image {
    filter: brightness(0) invert(1);
}

.header.transparent .nav-link,
.header.transparent .header-link {
    color: white;
}

.header.transparent .nav-link.active {
    color: var(--primary-gold);
}

.header.transparent .mobile-menu-toggle span {
    background: white;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr minmax(120px, 200px);
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    text-align: left;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-self: start;
}

.logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    padding: 4px 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.logo-image {
    height: 120px;
    width: auto;
    max-height: 120px;
    object-fit: contain;
    object-position: center;
    transition: filter 0.4s ease;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
}

.logo-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin: 0;
    text-transform: uppercase;
}

.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
    justify-self: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    justify-self: end;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn, .header-link {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.4s ease;
    padding: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.icon-btn {
    font-size: 18px;
}

.header-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.icon-btn:hover, .header-link:hover {
    color: var(--primary-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    text-align: center;
    padding: 10px 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-full {
    width: 100%;
    max-width: 100%;
}

/* Hero Video Section */
.hero-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    min-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    background: #000;
}

@supports (height: 100dvh) {
    .hero-video {
        height: 100dvh;
        min-height: 100dvh;
    }
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 35%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Carousel Section */
.hero-carousel {
    position: relative;
    height: 600px;
    margin-top: 0;
    overflow: visible;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.9s ease, transform 1.2s ease;
    will-change: opacity, transform;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.62));
}

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

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.slide-description {
    font-size: 20px;
    font-weight: 400;
    color: white;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    z-index: 2;
}

.carousel-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.98);
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.carousel-nav {
    position: absolute;
    right: 40px;
    bottom: 0;
    transform: translateY(50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.carousel-arrow i {
    pointer-events: none;
}

.carousel-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.carousel-arrow:active {
    transform: translateY(0);
}

.carousel-toggle {
    background: rgba(0, 0, 0, 0.35);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.carousel-toggle:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.7);
}

.carousel-toggle .play-label {
    display: none;
}

.carousel-toggle.is-paused .play-label {
    display: inline;
}

.carousel-toggle.is-paused .pause-label {
    display: none;
}

/* Section Title Styles */
.section-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.title-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin-bottom: 30px;
}

.title-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* Design Section */
.design-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.design-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Gallery Slideshow */
.gallery-slideshow {
    padding: 60px 0;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.9s ease, transform 1.2s ease;
    will-change: opacity, transform;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

.slideshow-toggle {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.slideshow-toggle:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.slideshow-toggle .play-label {
    display: none;
}

.slideshow-toggle.is-paused .play-label {
    display: inline;
}

.slideshow-toggle.is-paused .pause-label {
    display: none;
}

/* Coffee Experience Section */
.coffee-experience-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.experience-image video {
    width: 100%;
    height: auto;
    display: block;
}

/* Blob-wrapped video */
.video-blob-wrapper {
    background: #ffffff;
    border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4;
}

.video-blob-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.coffee-experience-section .experience-image {
    overflow: visible;
    border-radius: 0;
}

.coffee-experience-section .experience-image:hover video {
    transform: none;
}

.experience-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Drink Excellence Section */
.drink-excellence-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.excellence-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.excellence-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Featured Drink Section */
.featured-drink-section {
    padding: 100px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

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

.featured-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 158, 85, 0.3);
}

/* Centered Section Title */
.section-title-center {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.menu-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--pos-x, 50%) var(--pos-y, 58%);
    transform: scale(1.08);
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.12);
}

.menu-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.menu-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.video-container {
    max-width: 900px;
    margin: 60px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-align: right;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Image Zoom Effect */
.design-image,
.experience-image,
.featured-image {
    overflow: hidden;
    border-radius: 4px;
}

.design-image img,
.experience-image img,
.experience-image video,
.featured-image img {
    transition: transform 0.5s ease;
}

.design-image:hover img,
.experience-image:hover img,
.experience-image:hover video,
.featured-image:hover img {
    transform: scale(1.05);
}

/* Footer Styles */
.footer {
    background: var(--bg-light);
    padding-top: 80px;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    margin-bottom: 40px;
    overflow: visible;
    margin-top: 0;
    width: 90px;
    margin-left: 0;
    margin-right: 0;
}

.footer-logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
    object-position: center;
    transform: scale(3);
    transform-origin: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    width: 90px;
    margin: 0;
}

.footer-social a {
    color: var(--text-dark);
    font-size: 24px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
}

.footer-social a:hover {
    color: var(--primary-gold);
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.newsletter-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-hours-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.footer-hours-subtext {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.footer-location-link {
    margin-top: 10px;
}

.footer-location-link a {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-location-link a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    font-family: inherit;
    font-size: 14px;
    background: var(--bg-white);
}

.newsletter-btn {
    padding: 12px 25px;
    background: var(--text-dark);
    color: white;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }

    .container {
        padding: 0 30px;
    }

    .design-grid,
    .experience-grid,
    .featured-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        grid-template-columns: minmax(110px, 1fr) auto;
        gap: 20px;
    }

    .nav-desktop {
        display: none;
    }

    .header-actions {
        gap: 12px;
    }

    .header-link {
        font-size: 12px;
    }

    .logo-image {
        height: 72px;
        width: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

    .hero-carousel {
        height: 400px;
        margin-top: 0;
    }

    .hero-video-bg {
        object-position: center 20%;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .design-grid,
    .experience-grid,
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .design-section,
    .coffee-experience-section,
    .drink-excellence-section,
    .featured-drink-section,
    .features-section,
    .menu-section,
    .testimonials-section,
    .video-section {
        padding: 60px 0;
    }

    .video-blob-wrapper {
        padding: 20px 15px;
    }

    .video-container {
        margin-top: 40px;
    }

    .gallery-slideshow {
        padding: 40px 0;
    }

    .slideshow-container {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .carousel-control {
        padding: 10px 15px;
        font-size: 18px;
    }

    .carousel-control.prev {
        left: 10px;
    }

    .carousel-control.next {
        right: 10px;
    }

    .carousel-controls {
        bottom: 20px;
    }

    .carousel-nav {
        right: 18px;
        gap: 10px;
        transform: translateY(45%);
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-toggle,
    .slideshow-toggle {
        font-size: 10px;
        padding: 6px 12px;
    }

    .features-grid,
    .menu-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header-link span {
        display: none;
    }

    .hero-carousel {
        height: 300px;
    }

    .carousel-nav {
        right: 12px;
        gap: 8px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .slideshow-container {
        height: 300px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}
