/* ===================================
   The Pancake Project - Landing Page
   Premium QSR Dessert Brand
   =================================== */

/* CSS Variables */
:root {
    --navy-dark: #0a1628;
    --navy-medium: #0f1f3a;
    --navy-light: #152642;
    --white: #ffffff;
    --white-muted: rgba(255, 255, 255, 0.8);
    --pink-accent: #f5a5b8;
    --pink-hover: #f7b8c7;
    --gradient-pink: linear-gradient(135deg, #f5a5b8, #e8758a);
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--navy-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
}

.accent-text {
    color: var(--pink-accent);
}

/* Navbar */
.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--pink-accent);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pink-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 22, 40, 0.85), rgba(15, 31, 58, 0.9)), url('assets/background-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(245, 165, 184, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-logo {
    max-width: 280px;
    height: auto;
}

.tagline {
    font-size: 1rem;
    color: var(--pink-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--white-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--navy-medium);
}

/* Section with Menu Background */
#menu.bg-darker {
    background: linear-gradient(rgba(15, 31, 58, 0.92), rgba(15, 31, 58, 0.95)), url('assets/background-menu.jpg');
    background-size: cover;
    background-position: center;
}

/* Section with Locations Background */
#locations.bg-darker {
    background: linear-gradient(rgba(15, 31, 58, 0.88), rgba(15, 31, 58, 0.92)), url('assets/background-locations.jpg');
    background-size: cover;
    background-position: center;
}

/* Section with Contact Background */
#contact.bg-darker {
    background: linear-gradient(rgba(10, 22, 40, 0.85), rgba(15, 31, 58, 0.90)), url('assets/background-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 165, 184, 0.3);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-call {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--pink-accent);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    margin-right: 1rem;
}

.btn-call:hover {
    background: var(--pink-accent);
    color: var(--navy-dark);
}

/* About Section */
.about-text {
    font-size: 1.1rem;
    color: var(--white-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-highlight {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 2rem;
}

/* Menu Section */
.menu-card {
    background: var(--navy-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 165, 184, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.menu-icon {
    font-size: 2.5rem;
    color: var(--pink-accent);
    margin-bottom: 1rem;
}

.menu-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.menu-card p {
    color: var(--white-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.menu-note {
    text-align: center;
    color: var(--white-muted);
    font-size: 0.9rem;
}

/* Promise Section */
.promise-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    padding: 1rem 1.5rem;
    background: var(--navy-medium);
    border-radius: 12px;
    transition: var(--transition);
}

.promise-item:hover {
    background: var(--navy-light);
    transform: translateX(5px);
}

.promise-item i {
    font-size: 1.5rem;
}

/* Location Section */
.location-card {
    background: var(--navy-light);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.location-details {
    margin-bottom: 1.5rem;
}

.location-details p {
    margin-bottom: 0.5rem;
    color: var(--white-muted);
}

.location-details i {
    color: var(--pink-accent);
    margin-right: 0.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 12px;
}

/* Franchise Form */
.franchise-form {
    background: var(--navy-medium);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.franchise-form .form-label {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.franchise-form .form-control {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.franchise-form .form-control:focus {
    background: var(--navy-light);
    border-color: var(--pink-accent);
    box-shadow: 0 0 0 3px rgba(245, 165, 184, 0.15);
    color: var(--white);
}

.franchise-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Contact Section */
.contact-text {
    font-size: 1.15rem;
    color: var(--white-muted);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: var(--white-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-medium);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--pink-accent);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 22, 40, 0.98);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo {
        max-width: 200px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-call {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-logo {
        max-width: 160px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .promise-item {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}