/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    /* Secret Garden Productions Color Palette */
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-warm: #B8956A;      /* Warm brown from cover 1 */
    --accent-yellow: #F4D03F;    /* Vibrant yellow from cover 2 */
    --accent-pink: #E8B4B8;      /* Soft pink from cover 3 */
    --accent-primary: #B8956A;   /* Default accent */
    --text-color: #333333;
    --light-gray: #f9f7f4;
    --dark-gray: #000000;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

strong {
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    background-color: transparent;
    color: white;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar a {
    color: white !important;
}

.navbar h1 {
    color: white !important;
}

.navbar li a {
    color: white !important;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.nav-menu li a {
    color: white !important;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-menu a.active {
    color: white !important;
    opacity: 1;
}

.navbar .btn-primary {
    color: white !important;
    background-color: var(--accent-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1582703403975-51b44b5cae3a?ixlib=rb-4.1.0&auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--secondary-color);
    padding: 150px 0 100px;
    margin-top: 0;
    padding-top: 200px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Our Story button hover effect */
.hero-content a[href="#story"]:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #9a7854;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 149, 106, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Dark Section Styling */
.section-dark {
    background-color: var(--dark-gray);
    color: white;
}

.section-dark .section-title {
    color: white;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Gear Card Hover Effects */
.gear-card {
    position: relative;
}

.gear-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.gear-card img {
    transition: transform 0.3s ease;
}

.gear-card:hover img {
    transform: scale(1.05);
}

/* Light Section Styling */
.section-light {
    background-color: white;
}

.section-light .section-title {
    color: var(--dark-gray);
}

.section-light .section-subtitle {
    color: #666;
}

/* Services Grid */
.services-overview {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin: 0 auto;
    max-width: fit-content;
}

.service-card ul li {
    list-style-type: none;
    text-align: left;
}

.service-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    font-size: 1.05rem;
}

.service-link:hover {
    color: #9a7854;
}

/* Studio Setup */
.studio-setup {
    background-color: var(--secondary-color);
}

.gear-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.gear-category {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.gear-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-primary);
    padding-bottom: 0.5rem;
}

.gear-category ul {
    list-style: none;
}

.gear-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    color: #555;
}

.gear-category li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
    color: var(--secondary-color);
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--secondary-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Placeholder Images with Secret Garden Colors */
.placeholder-img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.placeholder-warm {
    background: linear-gradient(135deg, #B8956A 0%, #9a7854 100%);
}

.placeholder-yellow {
    background: linear-gradient(135deg, #F4D03F 0%, #d4b536 100%);
    color: rgba(0, 0, 0, 0.6);
}

.placeholder-pink {
    background: linear-gradient(135deg, #E8B4B8 0%, #d99ca1 100%);
    color: rgba(0, 0, 0, 0.6);
}

.placeholder-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

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

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

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

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

    .gear-categories {
        grid-template-columns: 1fr;
    }

    /* Make Our Story blocks stack on mobile */
    #story .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

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

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

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

    .btn {
        width: 100%;
    }
}
