/*
 * Contact Page Styles - Q-Bab Burger
 * Extracted from inline styles for better performance and caching
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* Hero Section */
.contact-hero {
    margin-top: 80px;
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/gourmet-burger-horizontal.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: #f9a825;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.6;
}

/* Main Content */
.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    background: rgba(249, 168, 37, 0.1);
    border: 2px solid #f9a825;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    background: rgba(249, 168, 37, 0.15);
    box-shadow: 0 10px 30px rgba(249, 168, 37, 0.3);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #f9a825;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    stroke: #000;
}

.info-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #f9a825;
    letter-spacing: 1px;
}

.info-box p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.info-box a {
    color: #f9a825;
    text-decoration: none;
    transition: color 0.3s;
}

.info-box a:hover {
    color: #fff;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(249, 168, 37, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #f9a825;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #f9a825;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(249, 168, 37, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f9a825;
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Roboto', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #f9a825;
    color: #000;
    border: none;
    border-radius: 50px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 168, 37, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
}

/* Map Section */
.map-section {
    margin-top: 80px;
    padding: 60px 40px;
    background: #1a1a1a;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-container h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #f9a825;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.map-frame {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #f9a825;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Opening Hours */
.hours-section {
    background: linear-gradient(135deg, #f9a825 0%, #f89628 100%);
    padding: 60px 40px;
    margin-top: 80px;
}

.hours-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hours-container h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #000;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.hour-item {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hour-day {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #000;
}

.hour-time {
    font-weight: 500;
    color: #1a1a1a;
}

/* Mobile Navbar Fixes */
@media (max-width: 768px) {
    .top-navbar {
        padding: 15px 20px 15px 100px !important;
        min-height: 60px !important;
    }

    .top-navbar.scrolled {
        padding: 10px 20px 10px 100px !important;
        min-height: 50px !important;
    }

    .nav-menu {
        display: none !important;
    }

    .site-logo {
        left: 15px !important;
    }

    .site-logo img {
        height: 50px !important;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .contact-hero {
        padding: 60px 20px 40px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background: #0a0a0a;
    padding: 60px 40px 30px;
    color: #fff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left h2,
.footer-middle h3,
.footer-right h3 {
    font-family: 'Bebas Neue', cursive;
    color: #f9a825;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.footer-middle p,
.footer-right p {
    color: #ccc;
    line-height: 1.8;
}

.footer-right a {
    color: #f9a825;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #f9a825;
    border-radius: 50%;
    color: #f9a825;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #f9a825;
    color: #000;
    transform: translateY(-3px);
}

.social-icon svg {
    stroke: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f9a825;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #888;
    font-size: 0.9rem;
}

.footer-scroll-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f9a825;
    border-radius: 50%;
    color: #000;
    transition: all 0.3s;
}

.footer-scroll-top:hover {
    background: #fff;
    transform: translateY(-3px);
}

.footer-scroll-top svg {
    stroke: currentColor;
}

/* Cart Popup Styles */
.cart-popup {
    display: none;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}