:root {
    /* Branding Colors */
    --bg-cream: #f4f1e1;
    --text-brown: #6d5433;
    --accent-green: #768a55;
    --accent-orange: #d69151;
    --white: #ffffff;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-brown);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: var(--text-brown);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Header & Nav */
header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--bg-cream);
    border-bottom: 5px solid var(--accent-green);
}

.logo-img {
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--text-brown);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.2s ease;
}

nav a:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background-color: rgba(214, 145, 81, 0.1);
}

/* Hero Section */
.hero {
    background-color: var(--accent-green);
    color: var(--bg-cream);
    text-align: center;
    padding: 6rem 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--bg-cream);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--bg-cream);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
    background-color: #c47c3e;
    transform: translateY(-3px);
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Container for the story image */
.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forces the duck image to fit perfectly inside the container */
.about-image-placeholder img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Adds a nice subtle shadow */
    object-fit: cover;
}

/* Merch Carousel */
.merch-section {
    padding: 3rem 0;
}

.merch-section h2 {
    text-align: center;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0 2rem 0;
    scrollbar-color: var(--accent-green) var(--bg-cream);
    scrollbar-width: thin;
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 4px;
}

.merch-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--white);
    border: 2px solid #e5dfcb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.merch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(109, 84, 51, 0.1);
}

.merch-img img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.merch-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.merch-card button {
    background-color: var(--text-brown);
    color: var(--bg-cream);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    transition: background-color 0.2s;
}

.merch-card button:hover {
    background-color: var(--accent-orange);
}

/* Footer */
footer {
    background-color: var(--text-brown);
    color: var(--bg-cream);
    text-align: center;
    padding: 4rem 2rem;
}

footer h2 {
    color: var(--accent-orange);
}

.contact-info {
    margin: 2rem 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: var(--accent-orange);
}

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

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}