/* Custom styles for Get the Scoop - Editorial Design */

:root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --slate: #1e293b;
    --slate-light: #334155;
    --cream: #fafaf9;
    --warm-gray: #78716c;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--slate);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
.serif-display {
    font-family: 'Playfair Display', serif;
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.headline-large {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.headline-medium {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

/* Accent line */
.accent-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}

/* Hero section */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Navigation */
nav {
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--slate);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: 2px solid var(--slate);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--slate);
    color: white;
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Feature icons */
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

/* Testimonial cards */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Section spacing */
section {
    padding: 6rem 0;
}

/* Footer */
footer {
    background: var(--slate);
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 4px;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 3rem 2rem;
        min-height: 80vh;
    }

    .hero-image {
        min-height: 60vh;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .headline-large {
        font-size: 2.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .accent-line {
        width: 60px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Print styles */
@media print {
    nav, .mobile-menu, button {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero-grid {
        min-height: auto;
    }
}
