:root {
    --burnt-orange: #E67E22;
    --warm-brown: #8B4513;
    --deep-brown: #5D4037;
    --forest-green: #4A7C59;
    --sage-green: #8B9D83;
    --cream: #FFF8DC;
    --warm-beige: #F5E6D3;
    --charcoal: #2C2C2C;
    --soft-orange: #FFB347;
    --accent-green: #6B8E23;
}

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

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.8;
    color: var(--charcoal);
    background: var(--cream);
}

nav {
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--warm-brown) 100%);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

nav .logo {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--cream);
    font-style: italic;
    display: inline-block;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage-green);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--burnt-orange) 50%, var(--soft-orange) 100%);
    color: var(--cream);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🎨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.2;
}

.hero h1 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    font-weight: normal;
    font-style: italic;
}

.hero p {
    font-size: 1.4rem;
    line-height: 2;
    max-width: 900px;
    margin: 1rem auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

section h2 {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    color: var(--warm-brown);
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
    position: relative;
}

section h2::after {
    content: '~';
    display: block;
    font-size: 2rem;
    color: var(--burnt-orange);
    margin: 0.5rem auto;
}

.intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--deep-brown);
    line-height: 2;
    margin-bottom: 3rem;
    font-style: italic;
}

.collections {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--cream) 100%);
    padding: 5rem 2rem;
    margin: 4rem 0;
    border-top: 3px solid var(--burnt-orange);
    border-bottom: 3px solid var(--burnt-orange);
}

.collection-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.collection {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.2);
    transition: all 0.4s ease;
    border: 3px solid var(--burnt-orange);
    position: relative;
}

.collection::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--forest-green));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection:hover::before {
    opacity: 1;
}

.collection:hover {
    transform: translateY(-15px) rotate(-1deg);
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.4);
}

.collection h3 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--warm-brown);
    font-style: italic;
}

.collection p {
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background: var(--burnt-orange);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn:hover {
    background: var(--forest-green);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(74, 124, 89, 0.5);
}

.about-work {
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--warm-brown) 100%);
    color: var(--cream);
    padding: 5rem 2rem;
    margin: 4rem 0;
    position: relative;
}

.about-work::before {
    content: '✨';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    opacity: 0.3;
}

.about-work blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 2.2;
    font-style: italic;
    border-left: 5px solid var(--burnt-orange);
    padding-left: 3rem;
    font-family: 'Georgia', serif;
}

footer {
    background: var(--charcoal);
    color: var(--cream);
    text-align: center;
    padding: 3rem;
    border-top: 5px solid var(--burnt-orange);
}

footer p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

footer a {
    color: var(--soft-orange);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

footer a:hover {
    color: var(--sage-green);
}

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .about-work blockquote {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
}

/* Footer styling */
footer {
    background-color: #2C2416;
    color: #C8B89E;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-top: 2px solid #8B6914;
    font-size: 0.9em;
}

footer a {
    color: #D4A574;
    text-decoration: none;
}

footer a:hover {
    color: #FFB347;
    text-decoration: underline;
}

/* Body text styling for homepage content */
.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
    line-height: 1.8;
}

.content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a3728;
}

.content h2 {
    font-size: 2rem;
    color: #d97136;
    margin: 2rem 0 1rem 0;
    font-style: italic;
}

.content h3 {
    font-size: 1.5rem;
    color: #8b6f47;
    margin: 1.5rem 0 1rem 0;
}

.content blockquote {
    background: rgba(141, 111, 71, 0.1);
    border-left: 4px solid #8b6f47;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 8px;
}

.content blockquote p {
    margin: 0;
    color: #4a3728;
}

.callout {
    background: linear-gradient(135deg, rgba(217, 113, 54, 0.15), rgba(141, 111, 71, 0.15));
    border: 2px solid #d97136;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.callout h1 {
    color: #d97136;
    margin-bottom: 1rem;
}

.callout p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a3728;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.two-column div {
    background: rgba(217, 113, 54, 0.08);
    padding: 1.5rem;
    border-radius: 8px;
}

.image-grid {
    margin: 1.5rem 0;
    min-height: 100px;
    background: rgba(141, 111, 71, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #8b6f47;
    font-style: italic;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}
