
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #fff9f5;
}
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-logo img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover img {
    transform: rotate(360deg);
}

.logo-text {
    margin-left: 10px;
    transition: color 0.3s;
}

.nav-logo:hover .logo-text {
    color: #e67e22;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: #e67e22;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e67e22;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}
.back-section {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    align-items: center;
    gap: 3rem;
}

.back-content {
    flex: 1;
}

.back-content h1 {
    font-size: 2.8rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.back-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #666;
    max-width: 90%;
}

.back-image {
    flex: 1;
    position: relative;
}

.back-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.back-image:hover img {
    transform: scale(1.02);
}
.btn {
    position: relative;
    padding: 14px 32px;
    border: none;
    background-color: #d68c46;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(221, 155, 92, 0.3);
}

.btn:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.About-Us {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f8d7b4;
    box-shadow: 0 10px 30px rgba(240, 230, 230, 0.1);
    position: relative;
    flex: none;
    aspect-ratio: 1/1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s ease;
}

.about-image:hover {
    border-color: #eae4df;
}

.about-image:hover img {
    transform: scale(1.1);
}

.About-details {
    flex: 1;
}

.Section-title {
    font-size: 2.2rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.Section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e67e22;
}

.About-details p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}
.cakes-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.section-heading {
    font-size: 2.2rem;
    color: #e67e22;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e67e22;
}

.cakes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.cake-box {
    width: 260px;
    padding: 1.8rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.cake-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cake-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.cake-box:hover img {
    transform: scale(1.05);
}

.cake-box h3 {
    font-size: 1.3rem;
    color: #e67e22;
    margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
    .back-section {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .back-content {
        text-align: center;
    }
    
    .back-content p {
        max-width: 100%;
    }
    
    .section-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 300px;
        height: 300px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-menu {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .back-content h1 {
        font-size: 2.2rem;
    }
    
    .about-image {
        width: 250px;
        height: 250px;
    }
    
    .cake-box {
        width: 100%;
        max-width: 300px;
    }
}