/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

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

:root {
    --primary-color: #F2C85B;
    --secondary-color: #2E5A57;
    --accent-color: #F4A69A;
    --blend-gradient: linear-gradient(90deg, #F2C85B 0%, #F4A69A 100%);
    --text-light: #ffffff;
    --text-dark: #2c2c2c;
    --bg-dark: #132526;
    --bg-dark-transparent: rgba(19, 37, 38, 0.92);
    --overlay: rgba(46, 90, 87, 0.72);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: linear-gradient(90deg, rgba(19, 37, 38, 0.95), rgba(46, 90, 87, 0.92));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 72px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 58px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.25rem;
}

.nav-menu a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}

.nav-menu a.nav-utility {
    font-size: 0.74rem;
    letter-spacing: 0.2px;
}

.nav-icon {
    font-size: 0.78em;
    vertical-align: middle;
    margin-right: 0.2rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blend-gradient);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: calc(100% - 16px);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(19,37,38,0.82));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    height: 120px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid transparent;
    border-image: var(--blend-gradient) 1;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--blend-gradient);
    transition: var(--transition);
    z-index: -1;
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn:hover {
    color: var(--bg-dark);
    box-shadow: 0 10px 28px rgba(244, 166, 154, 0.35);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        top: 10px;
        opacity: 1;
    }
    50% {
        top: 30px;
        opacity: 0;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--secondary-color), #264a48);
}

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

.about-content p {
    margin-bottom: 1.3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-note {
    color: var(--primary-color) !important;
    font-style: italic;
}

/* ===================================
   COCKTAILS SECTION
   =================================== */

.cocktails-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #2b5452, var(--secondary-color));
}

.cocktails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.cocktail-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.cocktail-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.cocktail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cocktail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0.6;
    transition: var(--transition);
}

.cocktail-card:hover .cocktail-image img {
    transform: scale(1.1);
}

.cocktail-card:hover .cocktail-overlay {
    opacity: 0.8;
}

.cocktail-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.cocktail-card:hover .cocktail-info {
    transform: translateY(0);
}

.cocktail-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.cocktail-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.cocktail-card:hover .cocktail-info p {
    opacity: 1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: rgba(19, 37, 38, 0.55);
    border: 1px solid rgba(242, 200, 91, 0.25);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 166, 154, 0.95);
    box-shadow: 0 12px 28px rgba(242, 200, 91, 0.22), 0 12px 28px rgba(244, 166, 154, 0.2);
}

.menu-item-title {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.menu-price {
    color: var(--accent-color);
    white-space: nowrap;
}

.menu-item-desc {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* ===================================
   FOOD MENU SECTION
   =================================== */

.food-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.food-category {
    margin-bottom: 3rem;
}

.food-category:last-child {
    margin-bottom: 0;
}

.food-category-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.food-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
}

.food-item {
    background: rgba(46, 90, 87, 0.45);
    border: 1px solid rgba(244, 166, 154, 0.25);
    border-radius: 8px;
    padding: 1.2rem;
}

/* ===================================
   PARALLAX SECTION
   =================================== */

.parallax-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    z-index: 0;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 2rem;
}

.parallax-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
    line-height: 1.4;
}

/* ===================================
   COFFEE SECTION
   =================================== */

.coffee-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.coffee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.coffee-board-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.coffee-board {
    background: #f2f4f3;
    color: #3e3e3e;
    border: 6px solid #aeb9b5;
    border-radius: 36px;
    padding: 3rem 2.5rem;
    transform: rotate(-6deg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.coffee-board > * {
    transform: rotate(6deg);
}

.coffee-board-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    text-align: center;
    color: #2f5f58;
    margin-bottom: 2rem;
    font-style: italic;
}

.coffee-menu-block {
    margin-bottom: 2.2rem;
}

.coffee-menu-block:last-child {
    margin-bottom: 0;
}

.coffee-menu-heading {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: 0.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #666;
}

.coffee-list {
    max-width: 540px;
    margin: 0 auto;
}

.coffee-list-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.6;
}

.coffee-list-row span:last-child {
    white-space: nowrap;
}

.coffee-image {
    position: relative;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

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

.coffee-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(139,115,85,0.1));
}

.coffee-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-light);
}

.coffee-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.coffee-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.coffee-features {
    list-style: none;
    margin-top: 2rem;
}

.coffee-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.coffee-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark), #0f1f20);
}

.faq-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--secondary-color), #274d4b);
}

.faq-list {
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.faq-list li {
    background: rgba(19, 37, 38, 0.45);
    border: 1px solid rgba(242, 200, 91, 0.25);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
}

.faq-list strong {
    color: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.instagram-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.9rem;
}

.instagram-link-card {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: rgba(19, 37, 38, 0.55);
    border: 1px solid rgba(244, 166, 154, 0.45);
    color: var(--text-light);
    font-size: 0.92rem;
    text-align: center;
}

.instagram-link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-section {
    padding: 8rem 0;
    background: var(--secondary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    transition: var(--transition);
    background: rgba(19, 37, 38, 0.45);
    border: 1px solid rgba(244, 166, 154, 0.26);
    border-radius: 14px;
    padding: 1rem;
    perspective: 1200px;
}

.team-image {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.team-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    backface-visibility: hidden;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(242, 200, 91, 0.92), rgba(244, 166, 154, 0.92));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: var(--transition);
    backface-visibility: hidden;
    transform: rotateY(180deg);
}

.team-bio {
    color: var(--bg-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.team-card:hover .team-image {
    transform: rotateY(180deg);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 200, 91, 0.7);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.team-role {
    color: var(--accent-color);
    font-size: 0.98rem;
    letter-spacing: 0.2px;
    text-transform: none;
}

/* ===================================
   VIDEOS SECTION
   =================================== */

.videos-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.video-card {
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--secondary-color);
}

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

.video-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

/* ===================================
   INSTAGRAM SECTION
   =================================== */

.instagram-section {
    padding: 8rem 0;
    background: var(--secondary-color);
}

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

.instagram-icon {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.instagram-icon svg {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.instagram-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.instagram-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.8);
}

.instagram-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}

.instagram-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

/* ===================================
   LOCATION SECTION
   =================================== */

.location-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

.location-map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    border-radius: 8px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(180deg, #244947, #1d3f3e);
    padding: 4rem 0 2rem;
    border-top: 2px solid transparent;
    border-image: var(--blend-gradient) 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-light);
    transition: var(--transition);
}

.social-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .coffee-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .coffee-board {
        transform: none;
    }

    .coffee-board > * {
        transform: none;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cocktails-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--bg-dark-transparent);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-logo img {
        height: 80px;
    }

    .nav-logo img {
        height: 58px;
    }

    .navbar.scrolled .nav-logo img {
        height: 50px;
    }
    
    .cocktails-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 260px;
    }

    .menu-grid,
    .food-list {
        grid-template-columns: 1fr;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .menu-item-title {
        font-size: 1.15rem;
        flex-wrap: wrap;
    }

    .location-map {
        height: 320px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .cocktails-section,
    .about-section,
    .coffee-section,
    .food-section,
    .team-section,
    .videos-section,
    .instagram-section,
    .gallery-section,
    .faq-section,
    .location-section {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-btn,
    .instagram-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .cocktail-image {
        height: 350px;
    }
    
    .coffee-image {
        height: 400px;
    }

    .nav-logo img {
        height: 50px;
    }

    .navbar.scrolled .nav-logo img {
        height: 44px;
    }

    .coffee-board {
        padding: 2rem 1.3rem;
        border-width: 4px;
    }

    .coffee-list-row {
        font-size: 1rem;
    }
    
    .team-image {
        height: 220px;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
video:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* ===================================
   WHATSAPP BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ===================================
   REELS GALLERY
   =================================== */

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.reel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 0.85rem;
}

.reel-card .video-container {
    padding-bottom: 0;
    aspect-ratio: 9 / 16;
    margin-bottom: 0;
    background: #000;
}

.reel-card .video-container video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.reel-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    background: #000;
    display: block;
}

.watch-instagram-btn {
    display: inline-block;
    margin-top: 0.9rem;
    padding: 0.65rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--text-light);
    transition: var(--transition);
}

.watch-instagram-btn:hover {
    background: var(--blend-gradient);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
