/*
 * About 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 */
.about-hero {
    margin-top: 80px;
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/gourmet-burger.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.about-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);
}

.about-hero p {
    font-size: 1.3rem;
    color: #ddd;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Content Section */
.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(249, 168, 37, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #f9a825;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #f9a825;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.info-card {
    background: rgba(249, 168, 37, 0.1);
    border: 2px solid #f9a825;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    background: rgba(249, 168, 37, 0.2);
    box-shadow: 0 15px 40px rgba(249, 168, 37, 0.3);
}

.info-card-icon {
    margin-bottom: 1.5rem;
}

.info-card-icon svg {
    transition: all 0.3s;
}

.info-card:hover .info-card-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(249, 168, 37, 0.5));
}

.info-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #f9a825;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.info-card p {
    color: #ddd;
    line-height: 1.6;
}

.info-card a {
    color: #f9a825;
    text-decoration: none;
    transition: color 0.3s;
}

.info-card a:hover {
    color: #fff;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f9a825 0%, #f89628 100%);
    padding: 80px 40px;
    margin: 80px 0;
}

.values-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: #000;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s;
}

.value-item:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-icon svg {
    transition: all 0.3s;
}

.value-item:hover .value-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.value-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.value-item p {
    color: #1a1a1a;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: #1a1a1a;
}

.cta-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #f9a825;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.cta-btn-primary {
    background: #f9a825;
    color: #000;
}

.cta-btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 168, 37, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: #f9a825;
    border: 2px solid #f9a825;
}

.cta-btn-secondary:hover {
    background: #f9a825;
    color: #000;
    transform: translateY(-3px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f9a825;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-hero {
        padding: 60px 20px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 568px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 40px 30px;
}

.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 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #f9a825;
    margin-bottom: 1rem;
}

.footer-middle h3,
.footer-right h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #f9a825;
    margin-bottom: 1rem;
}

.footer-middle p,
.footer-right p {
    line-height: 1.8;
    color: #ccc;
}

.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 {
    width: 40px;
    height: 40px;
    border: 2px solid #f9a825;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #f9a825;
    transform: translateY(-3px);
}

.social-icon svg {
    color: #f9a825;
}

.social-icon:hover svg {
    color: #000;
}

.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 p {
    color: #888;
    font-size: 0.9rem;
}

.footer-scroll-top {
    width: 40px;
    height: 40px;
    background: #f9a825;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-scroll-top:hover {
    background: #fff;
    transform: translateY(-3px);
}

.footer-scroll-top svg {
    color: #000;
}

/* 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;
    }
}

@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;
    }
}