/* ============================================
   HAVRUN - PREMIUM MINIMALIST WEBSITE
   Color Palette:
   - Cream/Beige: #F5F1E8 (background)
   - Charcoal: #2C3E50 (text, H logo)
   - Bronze/Tan: #A68B5B (accents, chevrons)
   - Light Gray: #E8E4DB (borders, dividers)
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F5F1E8;
    color: #2C3E50;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }

a {
    color: #A68B5B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2C3E50;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    /*background-color: #F5F1E8;*/
    border-bottom: 1px solid #E8E4DB;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(245, 241, 232, 0.95);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2C3E50;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    margin-right: -1.3rem;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: #2C3E50;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #A68B5B;
    transition: width 0.3s ease;
}

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

.nav-youtube {
    color: #A68B5B;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(166, 139, 91, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease;
}

.hero-logo img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 4px 12px rgba(44, 62, 80, 0.1));
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.1;
}

.highlight {
    color: #A68B5B;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* ============================================
   EMAIL CAPTURE FORM
   ============================================ */
.email-capture {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.email-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
    border: 1px solid #E8E4DB;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2C3E50;
    outline: none;
}

.email-input::placeholder {
    color: #999;
}

.email-button {
    padding: 0.75rem 2rem;
    background-color: #A68B5B;
    color: #F5F1E8;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.email-button:hover {
    background-color: #2C3E50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.email-button:active {
    transform: translateY(0);
}

.form-message {
    font-size: 0.9rem;
    color: #A68B5B;
    font-weight: 500;
    min-height: 1.5rem;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-divider {
    color: #E8E4DB;
}

/* ============================================
   SECONDARY CTA (YouTube)
   ============================================ */
.secondary-cta {
    animation: fadeInUp 0.8s ease 1s both;
}

.cta-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 40px;
    border: 2px solid #A68B5B;
    border-radius: 4px;
    color: #A68B5B;
    font-weight: 600;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    background-color: #A68B5B;
    color: #F5F1E8;
    transform: translateY(-2px);
}

.youtube-link svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #A68B5B;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

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

/* ============================================
   SECTIONS (Categories, Blog, Shop)
   ============================================ */
.categories,
.blog,
.shop {
    padding: 6rem 0;
    border-top: 1px solid #E8E4DB;
}

.categories {
    background-color: #F5F1E8;
}

.blog {
    background-color: rgba(232, 228, 219, 0.5);
}

.shop {
    background-color: #F5F1E8;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

/* ============================================
   COMING SOON PLACEHOLDER
   ============================================ */
.coming-soon-placeholder {
    max-width: 500px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px dashed #E8E4DB;
    border-radius: 4px;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coming-soon-placeholder h3 {
    color: #A68B5B;
    margin-bottom: 0.75rem;
}

.coming-soon-placeholder p {
    color: #999;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #2C3E50;
    color: #F5F1E8;
    padding: 2rem 0;
    border-top: 1px solid #E8E4DB;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text {
    font-size: 0.9rem;
    color: #B0B0B0;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
}

.footer-link {
    color: #B0B0B0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #A68B5B;
}

.footer-divider {
    color: #555;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

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

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

    .email-form {
        flex-direction: column;
    }

    .email-input,
    .email-button {
        width: 100%;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
    }

    .categories,
    .blog,
    .shop {
        padding: 4rem 0;
    }

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

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

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

    .nav-links {
        gap: 0.75rem;
    }

    .scroll-indicator {
        display: none;
    }
}