/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
    filter: invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffb84d;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffb84d;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 0 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    flex: 1;
    z-index: 2;
    animation: fadeInUp 1s ease;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 70%);
    padding: 150px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffb84d;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 184, 77, 0.3);
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 184, 77, 0.4);
}

.hero-image {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.floating-element {
    display: inline-block;
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.floating-element img {
    width: 120px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Beverage Section */
.beverage-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 100px 0;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
}

/* Menu Section */
.menu-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 100px 0;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.beverage-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    margin: 0 0.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #666;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-btn:hover,
.tab-btn.active {
    background: #000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.beverage-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.beverage-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.beverage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.beverage-item-image {
    height: 200px;
    background: linear-gradient(135deg, #333, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.beverage-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.beverage-item:hover .beverage-item-image img {
    transform: scale(1.05);
}

.beverage-item-content {
    padding: 1.5rem;
}

.beverage-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.beverage-item-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.beverage-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beverage-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.beverage-add-btn {
    padding: 0.5rem 1.5rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.beverage-add-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    height: 200px;
    background: linear-gradient(135deg, #333, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

/* Realistic smoke effect for coffee items on hover */
.menu-item.coffee:hover .menu-item-image::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 45%;
    width: 50px;
    height: 40px;
    background:
        radial-gradient(ellipse at 40% 20%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 80%),
        radial-gradient(ellipse at 30% 60%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.02) 60%, transparent 90%);
    border-radius: 50% 30% 60% 20%;
    transform: translateX(-50%) rotate(-5deg);
    animation: realistic-smoke 2.5s ease-out infinite;
    z-index: 1;
}

.menu-item.coffee:hover .menu-item-image::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 55%;
    width: 35px;
    height: 30px;
    background:
        radial-gradient(ellipse at 35% 25%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.08) 45%, transparent 75%),
        radial-gradient(ellipse at 65% 75%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.03) 55%, transparent 85%);
    border-radius: 40% 60% 20% 50%;
    transform: translateX(-50%) rotate(10deg);
    animation: realistic-smoke-delay 2.5s ease-out infinite;
    z-index: 1;
}

/* Fresh grilled smoke effect for inasal items on hover */
.menu-item.inasal:hover .menu-item-image::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 40%;
    width: 55px;
    height: 45px;
    background:
        radial-gradient(ellipse at 40% 20%, rgba(255, 255, 255, 0.9) 0%, rgba(250, 240, 220, 0.6) 20%, rgba(200, 180, 140, 0.3) 50%, transparent 75%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 255, 255, 0.7) 0%, rgba(240, 220, 180, 0.4) 30%, rgba(160, 120, 80, 0.1) 60%, transparent 85%),
        radial-gradient(ellipse at 25% 65%, rgba(250, 250, 250, 0.8) 0%, rgba(230, 200, 170, 0.5) 40%, rgba(130, 90, 60, 0.05) 70%, transparent 95%);
    border-radius: 50% 40% 60% 45%;
    transform: translateX(-50%) rotate(-8deg);
    animation: realistic-fresh-grill-smoke 2.2s ease-out infinite;
    z-index: 1;
}

.menu-item.inasal:hover .menu-item-image::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 60%;
    width: 42px;
    height: 35px;
    background:
        radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 0.85) 0%, rgba(245, 230, 200, 0.7) 25%, rgba(180, 150, 110, 0.2) 55%, transparent 80%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 250, 245, 0.75) 0%, rgba(220, 190, 150, 0.5) 35%, rgba(140, 100, 70, 0.08) 65%, transparent 90%);
    border-radius: 55% 45% 65% 35%;
    transform: translateX(-50%) rotate(12deg);
    animation: realistic-fresh-grill-smoke-delay 2.2s ease-out infinite;
    z-index: 1;
}

@keyframes realistic-smoke {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) rotate(-5deg) scale(0.3);
    }
    15% {
        opacity: 0.7;
        transform: translateX(-35%) translateY(-8px) rotate(-8deg) scale(0.8);
    }
    35% {
        opacity: 0.9;
        transform: translateX(-48%) translateY(-18px) rotate(-2deg) scale(1.0);
    }
    65% {
        opacity: 0.4;
        transform: translateX(-42%) translateY(-35px) rotate(5deg) scale(1.3);
    }
    100% {
        opacity: 0;
        transform: translateX(-38%) translateY(-65px) rotate(12deg) scale(1.8);
    }
}

@keyframes realistic-smoke-delay {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) rotate(10deg) scale(0.2);
    }
    10% {
        opacity: 0.5;
        transform: translateX(-65%) translateY(-5px) rotate(3deg) scale(0.6);
    }
    30% {
        opacity: 0.8;
        transform: translateX(-52%) translateY(-12px) rotate(15deg) scale(0.9);
    }
    60% {
        opacity: 0.3;
        transform: translateX(-58%) translateY(-28px) rotate(-5deg) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateX(-62%) translateY(-55px) rotate(-8deg) scale(1.6);
    }
}

@keyframes realistic-fresh-grill-smoke {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) rotate(-8deg) scale(0.2);
    }
    18% {
        opacity: 0.8;
        transform: translateX(-35%) translateY(-5px) rotate(-12deg) scale(0.85);
    }
    40% {
        opacity: 0.95;
        transform: translateX(-48%) translateY(-15px) rotate(-3deg) scale(1.05);
    }
    70% {
        opacity: 0.5;
        transform: translateX(-42%) translateY(-32px) rotate(8deg) scale(1.4);
    }
    100% {
        opacity: 0;
        transform: translateX(-38%) translateY(-68px) rotate(15deg) scale(1.9);
    }
}

@keyframes realistic-fresh-grill-smoke-delay {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) rotate(12deg) scale(0.15);
    }
    20% {
        opacity: 0.7;
        transform: translateX(-68%) translateY(-3px) rotate(5deg) scale(0.75);
    }
    45% {
        opacity: 0.9;
        transform: translateX(-55%) translateY(-12px) rotate(18deg) scale(1.0);
    }
    75% {
        opacity: 0.3;
        transform: translateX(-62%) translateY(-28px) rotate(-5deg) scale(1.35);
    }
    100% {
        opacity: 0;
        transform: translateX(-65%) translateY(-60px) rotate(-10deg) scale(1.75);
    }
}



.menu-item-content {
    padding: 1.5rem;
}

.menu-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.menu-item-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.add-btn {
    padding: 0.5rem 1.5rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Featured/Best Seller Section */
.featured-section {
    padding: 100px 0;
    background: #2f7c33;
    color: white;
}

.featured-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.featured-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.featured-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.featured-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.featured-image {
    margin-top: 3rem;
    text-align: center;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
}

.stats {
    display: flex;
    gap: 2rem;
}

.about-image {
    text-align: center;
}

.about-image iframe {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

/* Gallery Section */
.gallery-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 100px 0;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    height: 250px;
    background: linear-gradient(135deg, #333, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-content {
    padding: 1.5rem;
    text-align: center;
}

.gallery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.gallery-content p {
    color: #666;
    margin-bottom: 0;
}

/* Responsive gallery adjustments */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        height: 180px;
    }
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: #fff;
}

.social-links {
    display: flex;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 70px;
}

.social-link:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.social-name {
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.social-link:hover .social-name {
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */

/* Tablet styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .beverage-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .menu-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .featured-content {
        max-width: 700px;
    }

    .featured-text h2 {
        font-size: 2.2rem;
    }

    .featured-stats {
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .stats {
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .floating-element {
        width: 150px;
        height: 150px;
        margin-top: 2rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .beverage-tabs,
    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        margin: 0.5rem 0;
        width: 200px;
    }

    .beverage-container,
    .menu-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .beverage-item-image,
    .menu-item-image {
        height: 180px;
    }

    .beverage-item-content h3,
    .menu-item-content h3 {
        font-size: 1.3rem;
    }

    .menu-item-image {
        height: 180px;
    }

    .menu-item-content h3 {
        font-size: 1.3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .featured-text h2 {
        font-size: 2.5rem;
    }

    .about-image iframe {
        max-width: 100%;
        height: 250px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .stats {
        justify-content: space-around;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .menu-item-image {
        height: 140px;
    }

    .menu-item-content {
        padding: 1rem;
    }

    .menu-item-content h3 {
        font-size: 1.2rem;
    }
}

/* Mobile Navigation Toggle */
.nav-links.mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    display: flex !important;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-links.mobile li {
    margin: 1rem 0;
}

/* Hide/Show menu items for filtering */
.menu-item, .beverage-item {
    transition: all 0.5s ease;
}

.menu-item.hide, .beverage-item.hide {
    display: none;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}
