/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(to bottom, #f5b7c7, #f8d2dc, #fce8ed);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: transparent;
    padding: 1rem 0 0.5rem 0;
    text-align: center;
    position: relative;
    overflow: visible;
}

.header-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}

.header-cupcake {
    position: absolute;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 1;
}

.header-cupcake-left {
    top: 2rem;
    left: 15%;
    transform: rotate(-15deg);
}

.header-cupcake-right {
    top: 2rem;
    right: 15%;
    transform: rotate(15deg);
}

header .container {
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

header h1 {
    font-size: 2.5rem;
    color: #8b4a6b;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.tagline {
    font-size: 1.1rem;
    color: #6b4a8b;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.main-nav a {
    color: #8b4a6b;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(139, 74, 107, 0.8);
    color: white;
    transform: translateY(-2px);
}

/* Main content */
main {
    padding: 0;
}

section {
    background: transparent;
    padding: 2rem;
}


h2 {
    font-size: 2rem;
    color: #8b4a6b;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Hero section */
.hero {
    padding: 2rem 0;
    text-align: center;
}

.hero-background {
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero-headline {
    font-size: 2rem;
    color: #8b4a6b;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-subheading {
    font-size: 1rem;
    color: #6b4a8b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-ctas {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: #8b4a6b;
    color: white;
    box-shadow: 0 3px 10px rgba(139, 74, 107, 0.3);
}

.cta-primary:hover {
    background: #6b4a8b;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 74, 107, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #8b4a6b;
    border: 2px solid #8b4a6b;
}

.cta-secondary:hover {
    background: #8b4a6b;
    color: white;
    transform: translateY(-1px);
}

.hero-trust-signals {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c1810;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    font-size: 1.1rem;
    color: #8b4a6b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.trust-item a {
    color: #8b4a6b;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.trust-item a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

/* Facebook-specific override for trust link (use Facebook blue instead of Instagram gradient) */
.trust-item.facebook a {
    color: #1877f2;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    font-weight: 700;
}

.trust-item.facebook a:hover {
    text-decoration: underline;
    transform: none;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(139, 74, 107, 0.2);
}

.placeholder-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #ffb6c1, #ffc0cb);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #8b4a6b;
    font-size: 1.1rem;
    border: 2px dashed #8b4a6b;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid #8b4a6b;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-item h3 {
    font-size: 1.3rem;
    color: #8b4a6b;
    margin-bottom: 0.5rem;
}

.gallery-item p {
    color: #6b4a8b;
    font-size: 0.95rem;
}

.gallery-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b4a8b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Instagram CTA */
.instagram-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.instagram-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.instagram-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instagram-icon-large svg {
    width: 40px;
    height: 40px;
    color: white;
}

.instagram-text {
    flex: 1;
}

.instagram-text h3 {
    color: #8b4a6b;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.instagram-text p {
    color: #6b4a8b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.instagram-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(240, 148, 51, 0.4);
}

/* Social CTAs wrapper to hold Instagram + Facebook cards */
.social-ctas {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Facebook card mirrors Instagram card but with Facebook styling */
.facebook-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facebook-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.facebook-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1877f2, #0f63d6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facebook-icon-large svg {
    width: 40px;
    height: 40px;
    color: white;
}

.facebook-text h3 {
    color: #0f3f9a;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.facebook-text p {
    color: #27509a;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.facebook-btn {
    display: inline-block;
    background: linear-gradient(45deg, #1877f2, #0f63d6);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.facebook-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

/* Contact icon style for Facebook */
.facebook-icon {
    background: linear-gradient(45deg, #1877f2, #0f63d6);
    color: white;
}

/* Pricing */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.price-category {
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #8b4a6b;
}

.price-category h3 {
    font-size: 1.4rem;
    color: #8b4a6b;
    margin-bottom: 1rem;
    text-align: center;
}

.price-category ul {
    list-style: none;
}

/* .price-category li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dotted #d4a4b8;
    color: #5a4a6b;
} */

.price-category li {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px dotted #d4a4b8;
    color: #5a4a6b;
}

.price-category .fixed {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.price-category li:last-child {
    border-bottom: none;
}

.price-category span {
    font-weight: bold;
    color: #8b4a6b;
}

.price-category li span {
    display: inline-block;
    font-weight: bold;
    color: #8b4a6b;
    margin-left: 0.5rem;
    float: right;
}

.price-category li p.item-note {
    clear: both;
    margin: 0 0 0 0;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.pricing-note {
    background: rgba(255, 228, 238, 0.8);
    border-radius: 10px;
    border-left: 4px solid #ff69b4;
}

.pricing-note p {
    color: #6b4a8b;
    font-style: italic;
}

/* Contact */
.contact {
    text-align: center;
    background: transparent;
}

.contact-info {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.phone-icon {
    background: #ff69b4;
    color: white;
}

.location-icon {
    background: #8b4a6b;
    color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    color: #6b4a8b;
    margin-bottom: 0.2rem;
}

.contact-text a, .contact-detail {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c1810;
    text-decoration: none;
}

.contact-text a:hover {
    color: #8b4a6b;
    text-decoration: underline;
}

.order-notice {
    background: rgba(255, 182, 193, 0.3);
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    color: #8b4a6b;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background: rgba(139, 74, 107, 0.9);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.food-hygiene-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
}

/* Hide header cupcakes on mobile */
@media (max-width: 768px) {
    .header-cupcake {
        display: none;
    }

    .container {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .main-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .main-nav a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .instagram-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .hero-background {
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
    }
    
    .hero-trust-signals {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .gallery-item, .price-category {
        padding: 1rem;
    }
    
    section {
        padding: 1rem;        
    }
    
    .instagram-card {
        padding: 1rem;
    }
    
    .instagram-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .instagram-icon-large svg {
        width: 30px;
        height: 30px;
    }
    
    .instagram-text h3 {
        font-size: 1.2rem;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 200px;
        text-align: center;
    }
    
    .hero-trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}