/* ===================================
   BLONDIES PV - MODERN RETRO STYLE
   =================================== */

/* CSS Variables */
:root {
    --primary-yellow: #FFD700;
    --bright-yellow: #FFC107;
    --dark-yellow: #F9A825;
    --cyan-blue: #00BCD4;
    --dark-blue: #0097A7;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #9e9e9e;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.25);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    height: 65px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--cyan-blue));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--cyan-blue);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
    background: var(--gray-light);
    padding: 5px;
    border-radius: 20px;
    border: 2px solid var(--black);
}

.lang-btn {
    padding: 6px 12px;
    background: transparent;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
}

.lang-btn:hover {
    background: rgba(0, 188, 212, 0.2);
}

.lang-btn.active {
    background: var(--black);
    color: var(--primary-yellow);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    height: 100vh;
    background: url('../images/hero-good-stories.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(0, 188, 212, 0.3) 100%);
    z-index: 1;
}

@keyframes floatPattern {
    0% { transform: translateY(0); }
    100% { transform: translateY(-60px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 4px 4px 0px var(--black),
                 8px 8px 0px rgba(0, 0, 0, 0.2);
    animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeIn 1s ease-out 1s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--white);
    margin: 10px auto 0;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--black);
    color: var(--primary-yellow);
    border-color: var(--black);
}

.btn-primary:hover {
    background: var(--primary-yellow);
    color: var(--black);
    border-color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-strong);
}

/* ===================================
   SECTIONS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--cyan-blue));
    margin: 0 auto;
}

/* Welcome Section */
.welcome {
    padding: 100px 0;
    background: var(--white);
}

.welcome-text {
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--black);
    line-height: 1.8;
}

/* Feature Sections */
.slushbar, .loft {
    padding: 100px 0;
}

.slushbar {
    background: var(--gray-light);
}

.loft {
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    text-shadow: 3px 3px 0px var(--black);
    position: relative;
    overflow: hidden;
}

.slush-bg {
    background: url('../images/slushbar.jpg') center center / cover no-repeat;
}

.loft-bg {
    background: url('../images/theloft.jpg') center center / cover no-repeat;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.placeholder-text {
    display: none;
}

.feature-title {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--black);
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* ===================================
   LOCATIONS PREVIEW
   =================================== */
.locations-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--bright-yellow) 100%);
    position: relative;
}

.locations-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 80px 80px;
}

.locations-preview .container {
    position: relative;
    z-index: 1;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.location-card {
    background: url('../images/location-storefront.jpg') center center / cover no-repeat;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid var(--black);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.location-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 15px 30px var(--shadow-strong);
}

.location-card:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.location-number {
    font-size: 4rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.location-card h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.location-card p {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.text-center {
    text-align: center;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-style: italic;
    color: var(--primary-yellow);
}

.footer-section h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--cyan-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-medium);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .navbar .container {
        justify-content: space-between;
        position: relative;
    }

    .nav-brand {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .language-switcher {
        order: 1;
        scale: 0.85;
        margin-left: -5px;
    }

    .hamburger {
        order: 3;
        margin-right: -5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 40px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-grid,
    .feature-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .feature-grid.reverse .feature-image {
        order: 2;
    }

    .feature-grid.reverse .feature-content {
        order: 1;
    }

    .feature-content {
        text-align: center;
    }

    .feature-content .btn {
        display: inline-block;
    }

    .location-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
