:root {
    --teal-primary: #14b8a6;
    --teal-dark: #0d9488;
    --teal-light: #5eead4;
    --cream: #fef9f3;
    --warm-white: #fffbf7;
    --soft-gray: #64748b;
    --dark-gray: #334155;
    --accent-pink: #fda4af;
    --shadow: rgba(20, 184, 166, 0.1);
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-gray);
    background-color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(255, 251, 247, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--teal-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-facebook-btn {
    background-color: #1877f2 !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3) !important;
}

.nav-facebook-btn::after {
    display: none !important;
}

.nav-facebook-btn:hover {
    background-color: #0c63d4 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4) !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--teal-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--accent-pink) 0%, transparent 50%);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.95;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.title-line {
    display: inline-block;
    animation: slideIn 0.8s ease-out backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { 
    color: var(--teal-primary);
    animation-delay: 0.3s;
}
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-line-small {
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--soft-gray);
    margin-top: 0.5rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--soft-gray);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cta-button {
    display: inline-block;
    background-color: var(--teal-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.cta-button:hover {
    background-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
}

.hero-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-out 1s backwards;
}

.hero-cake-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.3);
    animation: float-image 6s ease-in-out infinite;
    object-fit: cover;
    aspect-ratio: 1;
}

@keyframes float-image {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 20px 60px rgba(20, 184, 166, 0.3);
    }
    50% { 
        transform: translateY(-20px) rotate(2deg);
        box-shadow: 0 30px 80px rgba(20, 184, 166, 0.4);
    }
}

.cake-icon {
    font-size: 12rem;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(20, 184, 166, 0.2));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

/* Valentine's Day Promotion Section */
.valentine-promo {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff0f5 0%, var(--cream) 50%, #ffe4e9 100%);
    position: relative;
    overflow: hidden;
}

.valentine-promo::before {
    content: '💕';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: -50px;
    right: -50px;
    animation: float 15s ease-in-out infinite;
}

.valentine-promo::after {
    content: '🌹';
    position: absolute;
    font-size: 12rem;
    opacity: 0.05;
    bottom: -30px;
    left: -30px;
    animation: float 20s ease-in-out infinite reverse;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #c2185b);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.valentine-title {
    color: #c2185b;
    margin-bottom: 1rem;
}

.valentine-title::after {
    background: linear-gradient(90deg, #ff6b9d, #c2185b);
}

.promo-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--soft-gray);
    margin-bottom: 4rem;
    font-style: italic;
}

.valentine-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.valentine-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.valentine-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(194, 24, 91, 0.1);
    border-left: 4px solid #ff6b9d;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(194, 24, 91, 0.2);
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #c2185b;
    margin-bottom: 0.75rem;
}

.menu-description {
    color: var(--soft-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-price {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #c2185b;
    font-family: 'Playfair Display', serif;
}

.menu-options {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-options li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
    color: var(--soft-gray);
}

.menu-options li:last-child {
    border-bottom: none;
}

.menu-options .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c2185b;
    font-family: 'Playfair Display', serif;
}

.promo-cta-box {
    background: linear-gradient(135deg, #ff6b9d, #c2185b);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(194, 24, 91, 0.3);
}

.cta-highlight {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.valentine-button {
    background-color: white;
    color: #c2185b;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.valentine-button:hover {
    background-color: #fff0f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.valentine-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
}

.valentine-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(194, 24, 91, 0.2);
    transition: all 0.4s ease;
}

.valentine-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(194, 24, 91, 0.3);
}

.featured-img {
    border: 3px solid #ff6b9d;
}

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

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    position: relative;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
    margin-top: 1rem;
    border-radius: 2px;
}

.section-title.centered::after {
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--warm-white);
}

.about-section-top {
    padding-top: 6rem;
    position: relative;
    background-image: url('shop1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-section-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 251, 247, 0.85) 0%, rgba(254, 249, 243, 0.80) 100%);
    z-index: 1;
}

.about-section-top .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.15rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-description strong {
    color: var(--teal-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.decorative-element {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-accent {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.3), rgba(20, 184, 166, 0.25));
    opacity: 1;
    animation: pulse 4s ease-in-out infinite;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 40px rgba(20, 184, 166, 0.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item.featured {
    grid-row: 1 / 3;
}

.gallery-item:not(.featured) {
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(20, 184, 166, 0.95), transparent);
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Hot Food Section */
.hot-food-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff5f0 0%, var(--warm-white) 100%);
    position: relative;
}

.hot-food-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.hot-food-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.hot-food-image:hover {
    transform: scale(1.02);
}

.hot-food-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hot-food-stamp {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
    transform: rotate(-5deg);
    animation: stamp-pulse 2s ease-in-out infinite;
}

@keyframes stamp-pulse {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.05); }
}

.hot-food-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.hot-food-description {
    font-size: 1.15rem;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.hot-food-cta {
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.3);
}

.cta-highlight-alt {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hot-food-button {
    background-color: white;
    color: #f97316;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hot-food-button:hover {
    background-color: #fff5f0;
    color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

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

.product-card {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal-light);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.product-card:nth-child(1) .product-icon { animation-delay: 0s; }
.product-card:nth-child(2) .product-icon { animation-delay: 0.3s; }
.product-card:nth-child(3) .product-icon { animation-delay: 0.6s; }
.product-card:nth-child(4) .product-icon { animation-delay: 0.9s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--soft-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Local Produce Section */
.local-produce-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fffbf0 0%, var(--cream) 100%);
    position: relative;
}

.produce-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.produce-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.produce-description {
    font-size: 1.15rem;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.produce-description strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.produce-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.produce-cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--teal-primary);
    font-weight: 600;
    margin-top: 1.5rem;
}

.produce-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.produce-image:hover {
    transform: scale(1.02);
}

.produce-image img {
    width: 100%;
    height: auto;
    display: block;
}

.produce-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(251, 191, 36, 0.95), rgba(251, 191, 36, 0.85));
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Hours Section */
.hours-section {
    padding: 4rem 0;
    background-color: var(--warm-white);
}

.hours-card {
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    padding: 4rem 3rem;
    border-radius: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.3);
}

.hours-card .section-title {
    color: white;
    text-align: center;
}

.hours-card .section-title::after {
    background: white;
    margin-left: auto;
    margin-right: auto;
}

.hours-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hours-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.hours-item.closed {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    font-size: 1.1rem;
}

.time {
    font-weight: 300;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.contact-card {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--soft-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-card a {
    color: var(--teal-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--teal-dark);
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* Social Media Section */
.social-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e7f3ff 0%, var(--warm-white) 100%);
}

.social-card {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(24, 119, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.social-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.social-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 2;
}

.facebook-button {
    background-color: white;
    color: #1877f2;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.facebook-button:hover {
    background-color: #f0f2f5;
    color: #0c63d4;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-section-top {
        padding-top: 5.5rem;
        background-attachment: scroll;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

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

    .title-line-small {
        font-size: 2rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cake-img {
        max-width: 300px;
    }

    .cake-icon {
        font-size: 8rem;
    }

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

    .decorative-element {
        display: none;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-facebook-btn {
        padding: 0.4rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .valentine-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .valentine-images {
        position: static;
    }

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

    .gallery-item.featured {
        grid-row: auto;
    }

    .produce-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hot-food-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .about-section-top {
        padding-top: 5rem;
    }

    .hero-content {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

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

    .title-line-small {
        font-size: 1.5rem;
    }

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

    .hero-cake-img {
        max-width: 250px;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .nav {
        padding: 1rem 0;
        background: rgba(255, 251, 247, 0.98);
    }

    .logo {
        font-size: 1.4rem;
        text-align: center;
    }

    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        width: 100%;
        font-size: 0.85rem;
    }

    .nav-menu li {
        flex: 0 0 auto;
    }

    .nav-menu a {
        padding: 0.3rem 0.5rem;
        white-space: nowrap;
    }

    .nav-facebook-btn {
        padding: 0.3rem 0.8rem !important;
        font-size: 0.8rem !important;
    }

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

    .hours-card {
        padding: 3rem 2rem;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .promo-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .menu-title {
        font-size: 1.3rem;
    }

    .menu-options li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .valentine-title,
    .gallery-page-title {
        font-size: 2rem;
    }

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

    .hot-food-stamp {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
