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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C1810;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background-color: #F5F1E8;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hero-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.hero-text-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.studio-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C1810;
    margin: 0;
    letter-spacing: 2px;
    text-align: left;
    flex: 1;
}

.tagline {
    font-size: 1.1rem;
    color: #2C1810;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
    text-align: right;
    flex: 1;
    max-width: 400px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #2C1810;
    margin: 0 auto 30px;
}

.scroll-indicator {
    margin-bottom: 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Daisy Flowers */
.daisy-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.daisy {
    position: absolute;
    background: radial-gradient(circle, #FFD700 20%, #FFFFFF 20%);
    border-radius: 50%;
}

.daisy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 50%;
}

.daisy::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFD700;
    border-radius: 50%;
}

.daisy-1 {
    width: 80px;
    height: 80px;
    top: 8%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.daisy-1::before {
    width: 55px;
    height: 55px;
}

.daisy-1::after {
    width: 25px;
    height: 25px;
}

.daisy-2 {
    width: 140px;
    height: 140px;
    top: 5%;
    right: 3%;
    animation: float 8s ease-in-out infinite reverse;
}

.daisy-2::before {
    width: 95px;
    height: 95px;
}

.daisy-2::after {
    width: 45px;
    height: 45px;
}

.daisy-3 {
    width: 100px;
    height: 100px;
    bottom: 8%;
    right: 8%;
    animation: float 7s ease-in-out infinite;
}

.daisy-3::before {
    width: 70px;
    height: 70px;
}

.daisy-3::after {
    width: 35px;
    height: 35px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* About Section */
.about {
    background-color: #FFFFFF;
    padding: 15vh 0;
    height: 100vh;;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2C1810;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    color: #2C1810;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    background-color: #F5F1E8;
    padding: 100px 0;
}

.portfolio-title {
    text-align: left;
    margin-bottom: 60px;
}

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

.portfolio-item {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
}

.portfolio-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.15);
}

.portfolio-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 24, 16, 0.1);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.portfolio-item:hover .portfolio-image::before {
    background-color: transparent;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Jar Labels Image */
.jar-labels {
    background-image: url('assets/images/labels.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Herb & Sage Image */
.herb-sage {
    background-image: url('assets/images/herb-sage.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Smol Sweets Image */
.smol-sweets {
    background-image: url('assets/images/smol-logo.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.portfolio-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C1810;
    margin: 25px 25px 15px;
    letter-spacing: 1px;
}

.portfolio-description {
    font-size: 0.95rem;
    color: #2C1810;
    margin: 0 25px 25px;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
    background-color: #2C1810;
    padding: 80px 0;
    text-align: center;
}

.contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta .section-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.contact-cta-text {
    font-size: 1.2rem;
    color: #F5F1E8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    background-color: #8B4513;
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
    text-decoration: none;
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .studio-name {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .tagline {
        text-align: center;
        max-width: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .studio-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .portfolio-item-title {
        font-size: 1.1rem;
    }
}
