/* Brand Kit Colors */
:root {
    --dark-green: #8ab04b;
    --light-green: #8ab04b;
    --yellow: #FFE485;
    --orange: #CE6933;
    --mud: #B19359;
    --dark-brown: #8B5D33;

    --text-dark: #2C3023;
    --text-light: #F9F9F6;
    --bg-light: #F4F5F0;

    --font-heading: 'Fraunces', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Buttons */
.btn-primary,
.btn-submit,
.btn-nav {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--dark-brown);
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 228, 133, 0.4);
}

.btn-primary:hover {
    background-color: var(--orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(206, 105, 51, 0.4);
}

.btn-submit {
    background-color: var(--dark-green);
    color: white;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
}

.btn-submit:hover {
    background-color: var(--dark-brown);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(244, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a:not(.btn-nav):hover {
    color: var(--orange);
}

.btn-nav {
    background-color: var(--yellow);
    color: var(--dark-brown);
    padding: 0.5rem 1.5rem;
}

.btn-nav:hover {
    background-color: var(--dark-brown);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background-color: var(--dark-brown);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--yellow);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-top: 5rem;
}

.hero-content h2 {
    color: var(--light-green);
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 450px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.circle-graphic {
    width: 450px;
    height: 450px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -40px;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Instructions Component */
.instructions-section {
    padding: 8rem 0;
    background-color: #FFFBF4;
}

.instructions-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(163, 177, 138, 0.2);
}

.tabs {
    display: flex;
    border-bottom: 2px solid rgba(163, 177, 138, 0.2);
}

.tab-btn {
    flex: 1;
    padding: 1.5rem;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--mud);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background-color: rgba(163, 177, 138, 0.1);
}

.tab-btn.active {
    color: var(--dark-green);
    border-bottom-color: var(--dark-green);
    background-color: #FFFBF4;
}

.tab-content {
    padding: 4rem 2rem;
    background-color: #FFFBF4;
    text-align: center;
    min-height: 300px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.tab-pane h3 {
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.tab-pane p {
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Our Story Section */
.story-section {
    padding: 8rem 0;
    background-color: var(--light-green);
    color: var(--text-dark);
}

.story-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    color: var(--text-light);
}

.story-content p {
    color: var(--text-light);
}

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

.social-links p {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #FFFBF4;
    color: var(--dark-green);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--orange);
    color: white;
    transform: translateY(-3px);
}

/* Order Section */
.order-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.order-wrapper {
    display: flex;
    background-color: #FFFBF4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.order-info {
    flex: 1;
    background-color: var(--orange);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.order-info h2 {
    color: white;
}

.order-form {
    flex: 1.5;
    padding: 4rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-brown);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    background-color: var(--bg-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--light-green);
    background-color: #FFFBF4;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 10px;
    text-align: center;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    background-color: var(--dark-brown);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 4rem 2rem;
}

footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Scroll Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin: 1rem auto;
    }

    .hero-image {
        margin-top: 4rem;
        margin-bottom: 3rem;
    }

    .circle-graphic {
        width: 300px;
        height: 300px;
        margin-right: 0;
    }

    .story-container {
        flex-direction: column;
    }

    .order-wrapper {
        flex-direction: column;
    }

    .order-info,
    .order-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFBF4;
        padding: 2rem 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .tabs {
        flex-direction: column;
    }

    .tab-btn {
        border-bottom: 1px solid rgba(163, 177, 138, 0.2);
    }
}