* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFBF5;
    color: #2C1810;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 245, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(218, 165, 32, 0.1);
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 0.8rem 5%;
    box-shadow: 0 12px 48px rgba(218, 165, 32, 0.2);
}

.logoContent {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #FFD700;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: rotate(360deg) scale(1.1);
}

.logoName {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar {
    display: flex;
    gap: 2.5rem;
}

.navbar a.active {
    color: #FFD700;
    font-weight: 600;
}

.navbar a.active::after {
    width: 100%;
}

.navbar a {
    text-decoration: none;
    color: #2C1810;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.navbar a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.navbar a:hover::after {
    width: 100%;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C1810;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.header-social {
    display: flex;
    gap: 0.8rem;
    margin-right: 2rem;
}

.header-social .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.icon {
    display: none;
    font-size: 1.5rem;
    color: #2C1810;
    cursor: pointer;
}

.icon i {
    transition: all 0.3s ease;
}

.icon i:hover {
    color: #FFD700;
    transform: scale(1.2);
}

.icon #menu-bar {
    display: block;
}

.icon #menu-bar.fa-times {
    transform: rotate(90deg);
}

/* Home Section */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(92, 51, 23, 0.75) 100%),
                url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80') center/cover;
    position: relative;
    padding: 6rem 5% 4rem;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 165, 0, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.homeContent {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.homeContent h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.homeContent p {
    font-size: 1.3rem;
    color: #F5E6D3;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.home-btn button {
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C1810;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.home-btn button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.home-btn button:hover::before {
    left: 100%;
}

.home-btn button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

/* About Us Section - FIXED */
.about-us {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #FFFBF5 0%, #FFF8E7 100%);
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23FFD700" opacity="0.1"/></svg>');
    pointer-events: none;
}

.about-usContent {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-usContent img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    border-radius: 30px;
    float: left;
    margin: 0 3rem 2rem 0;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    border: 5px solid #FFD700;
    transition: transform 0.5s ease;
    background: white;
    padding: 10px;
}

@media (max-width: 1024px) {
    .about-usContent img {
        margin: 0 2rem 2rem 0;
        max-width: 400px;
    }
}

.about-usContent img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.about-usContent h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2C1810;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-usContent h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.about-usContent h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #5C3317;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
}

.about-usContent p {
    font-size: 1.1rem;
    line-height: 2;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Featured Section */
.featured-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #2C1810 0%, #5C3317 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.text-elegant {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #F5E6D3;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.cakes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.cake-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease backwards;
}

.cake-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.cake-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.cake-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cake-card:hover .cake-image {
    transform: scale(1.15);
}

.cake-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, 0.8) 100%);
}

.cake-content {
    padding: 2rem;
}

.cake-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.cake-description {
    color: #F5E6D3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cake-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cake-footer a.btn {
  text-decoration: none;
}

.cake-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.btn-outline-gold:hover {
    background: #FFD700;
    color: #2C1810;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C1810;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.section-footer {
    text-align: center;
}

/* Stats Section */
.stats-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #2C1810 0%, #5C3317 100%);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: #F5E6D3;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #2C1810 0%, #5C3317 100%);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
    border-color: #FFD700;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C1810;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-description {
    color: #F5E6D3;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #FFFBF5 0%, #FFF8E7 50%, #FFFBF5 100%);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.section-title { 
    color: #5C3317; 
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    border: 2px solid #FFD700;
    width: 100%;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2C1810;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #5C3317;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: 1rem 1.5rem;
    border: 2px solid #F5E6D3;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFBF5;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    background: white;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C1810;
    padding: 1.2rem;
    margin-top: 1rem;
}

.btn-full {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
    border-color: #FFD700;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C1810;
    margin-bottom: 1.5rem;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #2C1810;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #F5E6D3;
    color: #5C3317;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #5C3317;
    line-height: 1.8;
    word-break: break-word;
}

.contact-details a {
  text-decoration: none;
  color: inherit; 
}

.contact-details a:hover {
  text-decoration: underline; 
  color: #d4af37;
}

.notice-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 2rem;
    border-radius: 20px;
}

.notice-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2C1810;
    margin-bottom: 1rem;
    font-weight: 700;
}

.notice-text {
    color: #2C1810;
    line-height: 1.8;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C1810 0%, #5C3317 100%);
    padding: 4rem 5% 2rem;
    color: #F5E6D3;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact-info a {
  text-decoration: none;
  color: inherit; 
}

.footer-contact-info a:hover {
  text-decoration: underline; 
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-logo-accent {
    color: #FFA500;
}

.footer-description {
    line-height: 1.8;
    color: #F5E6D3;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: #F5E6D3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #FFD700;
    transform: translateX(10px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #F5E6D3;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .homeContent h2 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cakes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-usContent img {
        margin: 0 2rem 2rem 0;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .header-social {
        display: none;
    }

    .icon {
        display: flex !important;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #FFFFFF 0%, #FFFBF5 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
        transition: left 0.4s ease;
        gap: 0;
        z-index: 998;
        overflow-y: auto;
    }

    .navbar.active {
        left: 0;
    }

    .navbar a {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        font-size: 1.1rem;
    }

    .navbar a::after {
        display: none;
    }

    .navbar a.active {
        background: rgba(255, 215, 0, 0.15);
        color: #FFD700;
        border-left: 4px solid #FFD700;
    }

    .homeContent h2 {
        font-size: 2.5rem;
    }

    .homeContent p {
        font-size: 1rem;
    }

    .home-btn button {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }

    .about-usContent h2 {
        font-size: 2.5rem;
    }

    .about-usContent h3 {
        font-size: 1.5rem;
    }

    .about-usContent p {
        font-size: 1rem;
    }

    .about-usContent img {
        float: none;
        margin: 0 auto 2rem;
        display: block;
        max-width: 100%;
        height: auto;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cake-title {
        font-size: 1.4rem;
    }

    .cake-price {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Contact Section Tablet Responsive */
    .contact-section {
        padding: 5rem 4%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 2rem;
    }

    .info-title {
        font-size: 1.3rem;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cakes-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 3%;
    }

    .logoName {
        font-size: 1.5rem;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }

    .homeContent h2 {
        font-size: 2rem;
    }

    .about-usContent img {
        max-width: 100%;
        height: auto;
        padding: 8px;
    }

    /* Contact Section Mobile Responsive */
    .contact-section {
        padding: 4rem 3%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-form-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .form-textarea {
        min-height: 100px;
    }

    .btn-gold {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .info-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .info-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .contact-details {
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .hours-row {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .notice-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .notice-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .notice-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.8rem;
    }
}