/* Complete New Modern Design System */

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

:root {
    --gold: #FFD700;
    --dark-gold: #DAA520;
    --cream: #FFF8E7;
    --dark: #1A1A1A;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

/* Navigation */
.nav-modern {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon img {
    height: 60px;
    width: auto;
}

.brand-text {
    display: none;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-button {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #FDB933, #FFD700);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 185, 51, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF6B35, #FDB933);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 185, 51, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 10001;
    position: relative;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Section - Split layout styles are in hero-split.css */

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    transform: translateY(1px);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.hero-wave path {
    fill: #ffffff;
}

@media (max-width: 768px) {
    .hero-wave svg {
        height: 80px;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero-headline .line-1 {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    margin-bottom: 0.2em;
}

.hero-headline .line-2 {
    display: block;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.hero-scroll span {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    margin: 0 auto;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

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

.story-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark);
    font-weight: 700;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-chapter {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 60px;
}

.chapter-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
}

.story-chapter h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.story-chapter p {
    color: var(--gray);
    line-height: 1.8;
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-stack img {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.stack-1 {
    width: 60%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 3;
}

.stack-2 {
    width: 50%;
    height: 50%;
    top: 20%;
    right: 10%;
    z-index: 2;
}

.stack-3 {
    width: 40%;
    height: 40%;
    bottom: 0;
    left: 20%;
    z-index: 1;
}

.image-stack:hover .stack-1 {
    transform: rotate(-5deg) scale(1.05);
}

.image-stack:hover .stack-2 {
    transform: rotate(3deg) scale(1.05);
}

.image-stack:hover .stack-3 {
    transform: rotate(-3deg) scale(1.05);
}

/* Flavors Section */
.flavors-modern {
    padding: 120px 2rem;
    background: var(--light-gray);
}

.flavors-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.flavor-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover {
    border-color: var(--gold);
}

.filter-pill.active {
    background: var(--gold);
    color: var(--dark);
}

.filter-pill.vegan {
    background: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-pill.vegan:hover {
    background: #45a049;
}

.flavors-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.flavor-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.flavor-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.flavor-visual {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.flavor-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.flavor-item:hover .flavor-visual img {
    transform: scale(1.1);
}

.flavor-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.flavor-type {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flavor-info {
    padding: 1.5rem;
}

.flavor-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.flavor-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.flavor-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.meta-tag {
    padding: 0.25rem 0.75rem;
    background: var(--light-gray);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
}

.meta-tag.vegan-tag {
    background: #E8F5E9;
    color: #4CAF50;
}

.flavors-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 3rem;
    border: 2px solid var(--dark);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}

/* Workshops Section */
.workshops-minimal {
    padding: 120px 2rem;
    background: white;
}

.workshop-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-option {
    background: var(--light-gray);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.workshop-option:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.workshop-option.featured {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 30px;
    background: #FF4757;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.workshop-icon {
    margin-bottom: 2rem;
}

.workshop-option h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.workshop-option.featured h3 {
    color: white;
}

.workshop-desc {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.workshop-option.featured .workshop-desc {
    color: rgba(255, 255, 255, 0.9);
}

.workshop-features {
    list-style: none;
    margin-bottom: 2rem;
}

.workshop-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 25px;
}

.workshop-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.workshop-option.featured .workshop-features li {
    color: rgba(255, 255, 255, 0.9);
}

.workshop-option.featured .workshop-features li::before {
    color: white;
}

.workshop-price {
    margin-bottom: 2rem;
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.workshop-option.featured .price-from {
    color: rgba(255, 255, 255, 0.8);
}

.workshop-option.featured .price-amount {
    color: white;
}

.workshop-book {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.workshop-book:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.05);
}

.workshop-option.featured .workshop-book {
    background: white;
    color: var(--dark);
}

/* Gallery Section */
.gallery-minimal {
    padding: 120px 2rem;
    background: var(--light-gray);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark);
}

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

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    cursor: pointer;
}

.gallery-tile.large {
    grid-column: span 2;
    height: 400px;
}

.gallery-tile.tall {
    grid-row: span 2;
    height: 620px;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.gallery-tile:hover img {
    transform: scale(1.1);
}

.tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-tile:hover .tile-overlay {
    opacity: 1;
}

.tile-overlay span {
    font-size: 1.25rem;
    font-weight: 600;
}

.gallery-follow {
    text-align: center;
    margin-top: 60px;
}

.follow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.follow-link:hover {
    color: var(--gold);
}

/* Contact Section */
.contact-split {
    display: grid;
    grid-template-columns: 1fr;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-info-panel {
    background: var(--dark);
    padding: 80px 60px;
    color: white;
}

.contact-info-panel h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-panel > p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.detail-text p {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
}

.social-icon svg {
    fill: white;
    transition: fill 0.3s ease;
}

.social-icon:hover svg {
    fill: var(--dark);
}

.contact-map-panel {
    position: relative;
}

.contact-map-panel iframe {
    filter: grayscale(1) contrast(1.2) opacity(0.8);
}

/* Footer */
.footer-modern {
    background: var(--dark);
    color: white;
    padding: 60px 2rem 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
}

.link-column h4,
.footer-newsletter h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.link-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--gold);
}

.footer-newsletter p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex !important;
    }

    .hero-headline {
        font-size: clamp(3rem, 8vw, 5rem);
    }

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

    .image-stack {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Enhanced Workshop Section */
.workshops-enhanced {
    padding: 80px 0 !important;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%) !important;
}

.workshop-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.workshop-hero-image {
    position: relative;
    aspect-ratio: 21/9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.workshop-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.workshop-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    padding: 30px;
}

.workshop-hero h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.workshop-stat {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

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

.workshop-card {
    position: relative;
    background: white !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.workshop-card .card-header {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.workshop-card .card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.workshop-card:hover .card-header img {
    transform: scale(1.1);
}

.workshop-card .card-content {
    padding: 30px;
}

.workshop-card .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.workshop-card .card-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.workshop-includes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
}

.include-item svg {
    flex-shrink: 0;
}

.workshop-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-tag .currency {
    font-size: 1.2rem;
}

.book-button {
    background: linear-gradient(135deg, #FDB933, #FFD700);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(253, 185, 51, 0.3);
    display: inline-block;
}

.book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 185, 51, 0.4);
    background: linear-gradient(135deg, #FF6B35, #FDB933);
}

.workshop-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.workshop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-card:hover .workshop-card-image img {
    transform: scale(1.1);
}

.workshop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.popular-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #FF6B6B;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.workshop-card-content {
    padding: 30px;
}

.workshop-card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.workshop-duration {
    color: #667eea;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.workshop-card-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.workshop-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.workshop-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.workshop-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #6c757d;
}

.workshop-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.workshop-process {
    margin-top: 60px;
}

.workshop-process h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-step p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Instagram Gallery Section */
.gallery-instagram {
    padding: 80px 0;
    background: white;
}

.instagram-profile {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e0e0e0;
    flex-shrink: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-info {
    flex: 1;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-username {
    font-size: 1.8rem;
    font-weight: 300;
    color: #262626;
}

.follow-btn {
    background: #0095f6;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.follow-btn:hover {
    background: #0081d6;
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.stat {
    color: #262626;
}

.stat strong {
    font-weight: 600;
}

.profile-bio {
    color: #262626;
}

.profile-bio strong {
    display: block;
    margin-bottom: 5px;
}

.profile-link {
    color: #0095f6;
    text-decoration: none;
    font-weight: 600;
}

.instagram-feed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stat {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instagram-cta {
    text-align: center;
    margin-top: 50px;
}

.instagram-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.instagram-cta p {
    color: #6c757d;
    margin-bottom: 25px;
}

.instagram-cta .btn-primary {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.instagram-cta .btn-primary:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .flavors-showcase {
        grid-template-columns: 1fr;
    }

    .workshop-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .instagram-profile {
        flex-direction: column;
        text-align: center;
    }

    .profile-header {
        flex-direction: column;
    }

    .profile-stats {
        justify-content: center;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .gallery-tile.large {
        grid-column: span 1;
    }

    .gallery-tile.tall {
        grid-row: span 1;
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Hide elements initially for scroll animations */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}