/* ========================================
   Cloud 69 Cigar & Smoke Shop
   Fresh, airy, pastel-toned design
   Emerald Green + Cream palette
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --emerald-deep: #064e3b;
    --emerald: #065f46;
    --emerald-mid: #059669;
    --emerald-light: #34d399;
    --emerald-pale: #d1fae5;
    --emerald-ghost: #ecfdf5;
    --cream: #fefce8;
    --cream-warm: #fef9c3;
    --cream-light: #fffbeb;
    --cream-white: #ffffff;
    --text-dark: #1a2e23;
    --text-mid: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.06), 0 1px 2px rgba(6, 78, 59, 0.04);
    --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.08), 0 2px 4px rgba(6, 78, 59, 0.04);
    --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.12), 0 4px 12px rgba(6, 78, 59, 0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-mid);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--emerald-deep);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.lead {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--emerald);
    color: var(--cream-white);
    border-color: var(--emerald);
}

.btn-primary:hover {
    background: var(--emerald-deep);
    border-color: var(--emerald-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cream-white);
    transform: translateY(-2px);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(254, 252, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream-white);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--emerald-deep);
}

.logo .accent {
    color: var(--emerald-light);
}

.navbar.scrolled .logo .accent {
    color: var(--emerald-mid);
}

.logo-icon {
    color: var(--emerald-light);
}

.navbar.scrolled .logo-icon {
    color: var(--emerald);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-mid);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-light);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--cream-white);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--emerald);
}

.nav-cta {
    background: var(--emerald);
    color: var(--cream-white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 500;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--emerald-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream-white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--emerald-deep);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald) 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cream-white);
    padding: 8px;
}

.mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--cream-white);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    background: var(--emerald-light);
    color: var(--emerald-deep) !important;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.82) 0%,
        rgba(5, 150, 105, 0.65) 50%,
        rgba(6, 95, 70, 0.78) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-light);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--cream-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-accent {
    font-style: italic;
    color: var(--emerald-light);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content .lead {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.feature-icon {
    color: var(--emerald-mid);
    flex-shrink: 0;
}

/* --- Lounge --- */
.lounge {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--emerald-ghost) 0%, var(--cream) 100%);
}

.lounge-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lounge-content .lead {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.lounge-content p {
    color: var(--text-mid);
    margin-bottom: 28px;
}

.lounge-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lounge-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-mid);
    font-size: 0.95rem;
}

.lounge-features li svg {
    color: var(--emerald-mid);
    flex-shrink: 0;
}

.lounge-images {
    position: relative;
    height: 600px;
}

.lounge-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 75%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lounge-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lounge-img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.lounge-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Selection --- */
.selection {
    padding: 120px 0;
    background: var(--cream);
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.selection-card {
    background: var(--cream-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.selection-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.selection-img {
    overflow: hidden;
    height: 220px;
}

.selection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.selection-card:hover .selection-img img {
    transform: scale(1.06);
}

.selection-card h3 {
    font-size: 1.3rem;
    padding: 24px 28px 0;
    color: var(--emerald-deep);
}

.selection-card p {
    padding: 12px 28px 28px;
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Experience Banner --- */
.experience {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.88) 0%,
        rgba(5, 150, 105, 0.72) 100%
    );
}

.experience-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.experience-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream-white);
    margin-bottom: 20px;
}

.experience-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 480px;
}

.experience-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--emerald-light);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--emerald-ghost) 100%);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit-info .lead {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    color: var(--emerald-mid);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--emerald-deep);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--emerald-mid);
}

.contact-item a:hover {
    color: var(--emerald-deep);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 460px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

/* --- Footer --- */
.footer {
    background: var(--emerald-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer .logo {
    color: var(--cream-white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-light);
    margin-bottom: 20px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer ul a:hover {
    color: var(--cream-white);
}

.footer ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer ul svg {
    color: var(--emerald-light);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.age-note {
    font-size: 0.8rem !important;
    font-style: italic;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid,
    .lounge-layout,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lounge-images {
        height: 450px;
        order: -1;
    }

    .experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-stats {
        flex-direction: row;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }

    .hero-scroll {
        bottom: 24px;
    }

    .about {
        padding: 80px 0;
    }

    .about-image img {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .lounge {
        padding: 80px 0;
    }

    .lounge-images {
        height: 350px;
    }

    .selection {
        padding: 80px 0;
    }

    .selection-grid {
        grid-template-columns: 1fr;
    }

    .experience {
        padding: 72px 0;
    }

    .experience-stats {
        flex-direction: column;
        gap: 24px;
    }

    .visit {
        padding: 80px 0;
    }

    .visit-map {
        height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

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

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