/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fffef7;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Buttons */
.floating-login-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-login-btn:hover {
    background-color: #A0522D;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.4);
}

.floating-wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wa-btn:hover {
    background-color: #1da851;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Header & Navigation - VERSI EXTRA BESAR */
.header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 5px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 90px; /* EXTRA BESAR! */
    width: auto;
    margin-right: 20px;
    filter: drop-shadow(0 3px 6px rgba(139, 69, 19, 0.2));
    border-radius: 8px;
    padding: 5px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
}

.logo span {
    font-size: 2.2rem; /* EXTRA BESAR! */
    font-weight: 900;
    color: #8B4513;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span::first-letter {
    font-size: 2.8rem;
    color: #FFD700;
    -webkit-text-fill-color: #FFD700;
}

/* Nav untuk logo besar */
.nav-list {
    display: flex;
    list-style: none;
    margin-left: 10px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: rgba(255, 215, 0, 0.1);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    background-color: #FFD700;
    color: #8B4513;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Responsive untuk logo EXTRA BESAR */
@media (max-width: 992px) {
    .logo img {
        height: 75px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .logo span::first-letter {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .logo img {
        height: 70px;
        margin-right: 15px;
    }
    
    .logo span {
        font-size: 1.8rem;
    }
    
    .nav {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
    
    .logo span::first-letter {
        font-size: 1.8rem;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 1rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-image: url('../images/gbr-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 700px;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 215, 0, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
}

.info-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #FFD700;
    color: #8B4513;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #f0c900;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Common Styles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #8B4513;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background-color: #f9f5eb;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.menu-item.reverse {
    flex-direction: row-reverse;
}

.menu-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.menu-img:hover img {
    transform: scale(1.05);
}

.menu-content {
    flex: 1;
}

.menu-content h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 10px;
}

.menu-description {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 20px;
}

.menu-content h4 {
    color: #8B4513;
    margin: 15px 0 10px;
}

.menu-options, .menu-packages, .drink-list {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.option-item, .package, .drink-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.option-item:last-child, .package:last-child, .drink-item:last-child {
    border-bottom: none;
}

.lauk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.lauk-item {
    background-color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #FFD700;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.quote {
    font-style: italic;
    font-size: 1.3rem;
    color: #8B4513;
    text-align: center;
    padding: 20px;
    border-left: 4px solid #FFD700;
    background-color: #f9f5eb;
    margin-top: 30px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f9f5eb;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FFD700;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    color: #8B4513;
    margin-bottom: 5px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFD700;
}

.contact-map {
    flex: 1;
}

#peta {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

#peta img {
    width: 100%;
    height: auto;
    display: block;
}

.map-caption {
    text-align: center;
    padding: 10px;
    background-color: white;
    font-style: italic;
    color: #666;
}

/* Footer */
.footer {
    background-color: #8B4513;
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.copyright {
    margin-bottom: 15px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #FFD700;
    color: #8B4513;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .menu-item, .menu-item.reverse, .about-content, .contact-content {
        flex-direction: column;
    }
    
    .menu-img, .about-img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 99;
        padding: 20px 0;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-link {
        margin: 10px 0;
        padding: 15px;
        display: block;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .lauk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .floating-login-btn, .floating-wa-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 90px;
        right: 15px;
    }
    
    .floating-wa-btn {
        bottom: 15px;
    }
}