/* Modern Home Page Styles - Inspired by Zeek's Design */
:root {
    /*Primary Colors*/
    --color-primary: #EAA1C1;
    --color-secondary: #A3C3CD;
    --color-tertiary: #BFD0AC;
    
    /*Background Color*/
    --color-bg: #FFFBF7;
    
    /*Secondary Color*/
    --color-light: #ffffff;
    --color-dark: #CC4782;
}

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

body {
    font-family: "Playfair Display", serif;
    line-height: 1.6;
    color: var(--color-dark);
    overflow-x: hidden;
    background: var(--color-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffeef8 0%, #e6f3ff 50%, #f0fff0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background: repeating-linear-gradient(
        45deg,
        #ff69b4 0px,
        #ff69b4 10px,
        #87ceeb 10px,
        #87ceeb 20px,
        #98fb98 20px,
        #98fb98 30px,
        #ffd700 30px,
        #ffd700 40px
    );
    border-radius: 50%;
    opacity: 0.1;
}

.decoration-dots.top-left {
    top: 10%;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.decoration-dots.top-right {
    top: 20%;
    right: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.decoration-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.decoration-stars::before,
.decoration-stars::after {
    content: '✦';
    position: absolute;
    font-size: 2rem;
    color: #ff69b4;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite;
}

.decoration-stars::before {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.decoration-stars::after {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #ff69b4;
    font-size: 2.5rem;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-cake {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

/* Service Categories */
.service-categories {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

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

.category-card.custom-cakes {
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
}

.category-card.cupcakes {
    background: linear-gradient(135deg, #ffe8f5, #fff0f8);
}

.category-card.gift-box {
    background: linear-gradient(135deg, #e8f0ff, #f0f8ff);
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.order-btn {
    background: #ff69b4;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.order-btn:hover {
    background: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

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

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

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #e6f3ff 100%);
    text-align: center;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ff69b4;
    margin-bottom: 2rem;
}

.welcome-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Feel the Taste Section */
.taste-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ff69b4;
    margin-bottom: 3rem;
}

.taste-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.taste-item {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.taste-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.taste-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff69b4, #87ceeb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.taste-item h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.taste-btn {
    background: #ff69b4;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.taste-btn:hover {
    background: #ff1493;
    transform: translateY(-2px);
}

/* Featured Cakes Gallery */
.featured-cakes {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fff0 0%, #ffeef8 100%);
}

.cakes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cake-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cake-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.cake-image {
    height: 250px;
    overflow: hidden;
}

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

.cake-item:hover .cake-image img {
    transform: scale(1.1);
}

.cake-info {
    padding: 1.5rem;
    text-align: center;
}

.cake-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.cake-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff69b4;
}

.view-all-container {
    text-align: center;
}

.view-all-btn {
    background: #ff69b4;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-btn:hover {
    background: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

/* Workshops Section */
.workshops-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff69b4, #87ceeb);
    color: white;
}

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

.workshops-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.workshop-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.workshops-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.workshops-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.workshop-btn {
    background: white;
    color: #ff69b4;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.workshop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ff69b4;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #ff69b4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff69b4;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #ff69b4;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .taste-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cakes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workshops-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .taste-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cakes-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .highlight {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .taste-categories {
        grid-template-columns: 1fr;
    }
    
    .workshops-info h2 {
        font-size: 2rem;
    }
}
