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

:root {
    --violet-primary: #9370DB;
    --violet-dark: #6B4B9E;
    --violet-light: #B89FDE;
    --charcoal: #3D3D3D;
    --white: #FFFFFF;
    --cream: #FAF9F6;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --gold: #D4AF37;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand {
    flex: 0 0 auto;
}

.nav-logo {
    height: 60px;
    width: auto;
}

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

.nav-link {
    font-weight: 400;
    color: var(--text-dark);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--violet-primary);
}

.nav-link.etsy-link {
    background-color: var(--violet-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
}

.nav-link.etsy-link:hover {
    background-color: var(--violet-dark);
    color: var(--white);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 600px;
    background-image: url('images/banner1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.85) 0%, rgba(107, 75, 158, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    padding: 20px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--violet-dark);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--violet-dark);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.section-text.centered {
    text-align: center;
}

/* About Preview */
.about-preview {
    background-color: var(--white);
}

/* Products Section */
.products {
    background-color: var(--cream);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.3);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.text-center {
    text-align: center;
}

/* Values Section */
.values {
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--violet-dark) 100%);
    color: var(--white);
}

.values .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--violet-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 400;
}

/* Story Page */
.story-content {
    background-color: var(--white);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.story-logo {
    text-align: center;
}

.large-logo {
    max-width: 300px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--violet-dark);
    margin-bottom: 25px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.heritage {
    background-color: var(--cream);
}

/* Contact Page */
.contact-content {
    background-color: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--violet-dark);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-method {
    margin-top: 40px;
}

.contact-method h3 {
    font-size: 1.8rem;
    color: var(--violet-dark);
    margin-bottom: 15px;
}

.email-link {
    font-size: 1.3rem;
    margin: 15px 0;
}

.email-link a {
    color: var(--violet-primary);
    font-weight: 500;
}

.email-link a:hover {
    color: var(--violet-dark);
    text-decoration: underline;
}

.inline-link {
    color: var(--violet-primary);
    font-weight: 500;
}

.inline-link:hover {
    color: var(--violet-dark);
    text-decoration: underline;
}

.contact-visual {
    text-align: center;
}

.contact-logo {
    max-width: 250px;
    margin: 0 auto 30px;
}

.contact-tagline {
    margin-top: 30px;
}

.contact-tagline p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--violet-dark);
    font-style: italic;
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--violet-light);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

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

    .hero {
        height: 500px;
    }

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

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

    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }
}

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

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

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

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