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

html {
    scroll-behavior: smooth;
}

:root {
    --leather-brown: #6B4423;
    --aged-paper: #F4E8D0;
    --olive-green: #5A6B3F;
    --rust-orange: #C86F3C;
    --deep-navy: #1F3A4F;
    --cream: #FFF9F0;
    --jungle-dark: #3B4A2F;
    --copper: #B87333;
    --dark-text: #2D2520;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--aged-paper);
}

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

/* Header & Navigation */
header {
    background: var(--cream);
    box-shadow: 0 2px 8px rgba(43, 37, 32, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--copper);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--leather-brown);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a:hover {
    background: rgba(107, 68, 35, 0.1);
    color: var(--rust-orange);
}

.nav-menu a:active {
    background: rgba(107, 68, 35, 0.2);
    color: var(--rust-orange);
    transform: scale(0.96);
}

.nav-instagram {
    display: flex;
    align-items: center;
    color: var(--dark-text);
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-instagram:hover {
    color: var(--rust-orange);
    background: transparent !important;
    transform: scale(1.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(107, 68, 35, 0.85), rgba(90, 107, 63, 0.85)), 
                url('pexels-catiamatos-1072179.jpg') center/cover no-repeat;
    color: var(--cream);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--copper);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    display: none;
}

.hero::after {
    content: '';
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: "Tilt Warp", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "XROT" 0,
        "YROT" 0;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--cream);
    color: var(--leather-brown);
    animation: fadeInUp 1s ease 0.4s backwards;
    border: 2px solid var(--copper);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--rust-orange);
    color: var(--cream);
}

/* Section Styles */
section {
    padding: 90px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--leather-brown);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: var(--copper);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Coming Soon Section */
.coming-soon {
    background: var(--cream);
    border-top: 1px solid rgba(107, 68, 35, 0.2);
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.launch-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rust-orange);
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.notify-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 2px solid var(--leather-brown);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: white;
}

.notify-form input[type="email"]:focus {
    outline: none;
    border-color: var(--rust-orange);
    box-shadow: 0 0 0 3px rgba(200, 111, 60, 0.1);
}

.btn-notify {
    background: var(--leather-brown);
    color: var(--cream);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 68, 35, 0.4);
    background: var(--rust-orange);
}

/* About Section */
.about {
    background: white;
    border-top: 1px solid rgba(107, 68, 35, 0.2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    color: var(--leather-brown);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-image .image-placeholder {
    background: transparent;
    border-radius: 8px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    position: relative;
    overflow: hidden;
}

.about-image .image-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.about-image .image-placeholder::before {
    content: '';
    display: none;
}

/* Contact Section */
.contact {
    background: var(--aged-paper);
    border-top: 1px solid rgba(107, 68, 35, 0.2);
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 560px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    background: var(--rust-orange);
    color: var(--cream);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid var(--copper);
}

.info-item h3 {
    color: var(--leather-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.info-item p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-message {
    background: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--copper);
    margin-top: 1rem;
}

.info-message h3 {
    color: var(--leather-brown);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.info-message p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(107, 68, 35, 0.2);
    border: 2px solid var(--copper);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--leather-brown);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rust-orange);
    box-shadow: 0 0 0 3px rgba(200, 111, 60, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background: var(--leather-brown);
    color: var(--cream);
    text-align: center;
    padding: 2.5rem 20px;
    border-top: 3px solid var(--copper);
}

footer p {
    margin: 0.5rem 0;
    font-size: 1.05rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 1;
}

/* Hero Samples Section */
.hero-samples {
    background: linear-gradient(135deg, rgba(107, 68, 35, 0.85), rgba(90, 107, 63, 0.85)), 
                url('pexels-catiamatos-1072179.jpg') center/cover no-repeat;
    color: var(--cream);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--copper);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.hero-samples .hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: "Tilt Warp", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "XROT" 0,
        "YROT" 0;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
}

.hero-samples .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Samples Section */
.samples {
    background: white;
    border-top: 1px solid rgba(107, 68, 35, 0.2);
    padding: 0;
}

.samples .hero-samples {
    margin-bottom: 3rem;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 0;
    padding: 0 20px 90px 20px;
}

.sample-card {
    background: var(--cream);
    border: 2px solid var(--copper);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.15);
    animation: fadeInUp 0.6s ease forwards;
    scroll-margin-top: 120px;
}

.sample-card:nth-child(1) { animation-delay: 0.1s; }
.sample-card:nth-child(2) { animation-delay: 0.2s; }
.sample-card:nth-child(3) { animation-delay: 0.3s; }
.sample-card:nth-child(4) { animation-delay: 0.4s; }
.sample-card:nth-child(5) { animation-delay: 0.5s; }
.sample-card:nth-child(6) { animation-delay: 0.6s; }
.sample-card:nth-child(7) { animation-delay: 0.7s; }

.sample-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(107, 68, 35, 0.25);
    border-color: var(--rust-orange);
}

.sample-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(200, 111, 60, 0.15);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.sample-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--leather-brown);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sample-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sample-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rust-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.sample-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.ingredients-list {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Samples CTA Section */
.samples-cta {
    background: linear-gradient(135deg, rgba(107, 68, 35, 0.1), rgba(90, 107, 63, 0.1));
    border-top: 1px solid rgba(107, 68, 35, 0.2);
    text-align: center;
    padding: 80px 20px;
}

.samples-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--leather-brown);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.samples-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-samples .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-samples .hero-content p {
        font-size: 1.1rem;
    }

    .samples-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sample-card {
        padding: 2rem;
    }

    .sample-number {
        font-size: 2.5rem;
    }

    .sample-name {
        font-size: 1.5rem;
    }

    .samples-cta h2 {
        font-size: 2rem;
    }

    .samples-cta p {
        font-size: 1rem;
    }
    
    .coming-soon-content {
        padding: 0 1rem;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .notify-form input[type="email"] {
        min-width: 100%;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image .image-placeholder {
        height: 320px;
        font-size: 8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-samples {
        padding: 80px 20px;
    }

    .hero-samples .hero-content h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-samples .hero-content p {
        font-size: 1rem;
    }

    .sample-card {
        padding: 1.5rem;
    }

    .sample-number {
        font-size: 2rem;
    }

    .sample-name {
        font-size: 1.3rem;
    }

    .samples-cta {
        padding: 60px 20px;
    }

    .samples-cta h2 {
        font-size: 1.7rem;
    }

    .samples-cta p {
        font-size: 0.95rem;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .contact-form {
        padding: 2rem;
    }
}
