/* Bibir69 - Fast Food Restaurant Landing Page Styles */
:root {
    --primary-red: #8B0000;
    --dark-red: #660000;
    --gold: #FFD700;
    --light-gold: #FFF8DC;
    --dark-bg: #1a0000;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-red) 100%);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    background: var(--gold);
    color: var(--dark-red);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 4rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(139,0,0,0.9), rgba(255,215,0,0.1));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 3px 3px 6px rgba(0,0,0,0.7), 0 0 10px var(--gold); }
    to { text-shadow: 3px 3px 6px rgba(0,0,0,0.7), 0 0 20px var(--gold), 0 0 30px var(--gold); }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    color: var(--dark-red);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.6);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255,215,0,0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.card p {
    color: var(--light-gold);
    text-align: center;
    line-height: 1.6;
}

/* Menu Section */
.menu-section {
    padding: 3rem 1rem;
    background: rgba(0,0,0,0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: linear-gradient(135deg, rgba(139,0,0,0.9) 0%, rgba(102,0,0,0.9) 100%);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,215,0,0.3);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item-content {
    padding: 1rem;
}

.menu-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.menu-item p {
    color: var(--light-gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.menu-price {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: bold;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '🔥';
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.promo-banner::after {
    content: '🍔';
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-banner h2 {
    color: var(--dark-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promo-banner p {
    color: var(--dark-red);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 1rem 1rem;
    border-top: 3px solid var(--gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p, .footer-section ul {
    color: var(--light-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--dark-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gold);
    color: var(--light-gold);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    border-radius: 15px;
    border: 3px solid var(--gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--gold);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--light-gold);
    background: rgba(255,255,255,0.15);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    color: var(--dark-red);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

/* Content Sections */
.content-section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-section p {
    color: var(--light-gold);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-red);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.5);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Special Offers Badge */
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--dark-red);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Testimonial Styles */
.testimonial {
    background: linear-gradient(135deg, rgba(139,0,0,0.9) 0%, rgba(102,0,0,0.9) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--gold);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
}

.testimonial-text {
    color: var(--light-gold);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--gold);
    font-weight: bold;
    text-align: right;
}

.rating {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--gold);
    margin: 2rem 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}
