* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.animate-fade-in.animated {
    opacity: 1;
}

.animate-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-stagger.animated > * {
    opacity: 1;
    transform: translateY(0);
}

.animate-stagger.animated > *:nth-child(1) { transition-delay: 0.1s; }
.animate-stagger.animated > *:nth-child(2) { transition-delay: 0.2s; }
.animate-stagger.animated > *:nth-child(3) { transition-delay: 0.3s; }
.animate-stagger.animated > *:nth-child(4) { transition-delay: 0.4s; }
.animate-stagger.animated > *:nth-child(5) { transition-delay: 0.5s; }
.animate-stagger.animated > *:nth-child(6) { transition-delay: 0.6s; }

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 60px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 90px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 19px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #F2360A;
}

.account {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    right: 60px;
}

.account i {
    color: #F2360A;
}

.account:hover {
    color: #F2360A;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Cake Section */
.cake-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 80px;
    width: 100%;
    margin-top: -80px;
}

.cake-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    max-width: 1200px;
    width: 100%;
}

.cake-content .text {
    max-width: 1000px;
}

.cake-content .text h1 {
    font-size: 53px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cake-content .text h1 span {
    color: #F2360A;
    font-weight: bold;
    text-decoration: underline wavy #F2360A;
}

.cake-content .text p {
    font-size: 22px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.watch-video {
    background: none;
    border: none;
    color: #000000;
    font-size: 26px;
    cursor: pointer;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.watch-video i {
    background-color: #F2360A;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons {
    display: flex;
    gap: 20px;
}

.read-more,
.order-now {
    padding: 18px 65px;
    border: none;
    border-radius: 5px;
    font-size: 19px;
    cursor: pointer;
    transition: 0.3s;
}

.read-more {
    background-color: #F2360A;
    color: white;
}

.read-more:hover {
    background-color: #d24c22;
}

.order-now {
    background-color: transparent;
    border: 2px solid #222;
    color: #000000;
}

.order-now:hover {
    background-color: #F2360A;
    color: white;
}

.cake-content .image img {
    width: 620px;
    height: 590px;
    border-radius: 10px;
    object-fit: cover;
}

/* About Section */
.about-section {
    padding: 100px 80px;
    background-color: #f7efef;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content .image {
    flex: 0 0 500px;
}

.about-content .image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content .text {
    flex: 1;
}

.about-content .text h2 {
    text-align: center; 
    margin-bottom: 20px;
    position: relative;
    font-size: 43px;
    color: #222;
}

.about-content .text h2:after {
    content: '';
    position: absolute;
    left: 50%; 
    transform: translateX(-50%); 
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: #F2360A;
}

.about-content .text h3 {
    font-size: 24px;
    color: #F2360A;
    margin: 25px 0 15px;
}

.about-content .text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    width: calc(50% - 10px);
}

.feature i {
    background-color: #F2360A;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature span {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 36px;
    color: #F2360A;
    margin-bottom: 5px;
}

.stat p {
    font-size: 16px;
    color: #666;
}

/* Menu Section */
.menu-section {
    padding: 100px 80px;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #F2360A;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: #F2360A;
    color: white;
    border-color: #F2360A;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-item-img {
    width: 100%;
    height: auto; 
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: auto;
    object-fit: contain; 
    transition: transform 0.5s ease;
}

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

.menu-item-content {
    padding: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item-title {
    font-size: 22px;
    color: #222;
    font-weight: 600;
}

.menu-item-price {
    font-size: 22px;
    color: #F2360A;
    font-weight: 700;
}

.menu-item-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-item-rating i {
    color: #ffc107;
    font-size: 16px;
}

.menu-item-rating span {
    font-size: 16px;
    color: #666;
}

.add-to-cart {
    background-color: #F2360A;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart:hover {
    background-color: #d24c22;
}

/* Reservation Section */
.reservation-section {
    padding: 100px 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('./images/1.avif');
    background-size: cover;
    background-position: center;
    color: white;
}

.reservation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.reservation-text {
    flex: 1;
}

.reservation-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
}

.reservation-text h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: #F2360A;
}

.reservation-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.reservation-features {
    margin-top: 40px;
}

.reservation-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reservation-feature i {
    background-color: #F2360A;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.reservation-feature span {
    font-size: 18px;
    font-weight: 500;
}

.reservation-form {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reservation-form h3 {
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #F2360A;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #F2360A;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #d24c22;
}

/* Order Section */
.order-section {
    padding: 100px 80px;
    background-color: #f9f9f9;
}

.order-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-cart {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.order-cart h3 {
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F2360A;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 16px;
    color: #F2360A;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background-color: #F2360A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.quantity-btn:hover {
    background-color: #d24c22;
}

.quantity-display {
    font-size: 18px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
}

.remove-btn:hover {
    color: #e60000;
}

.cart-summary {
    border-top: 2px solid #eee;
    padding-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
}

.empty-cart i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart p {
    font-size: 18px;
    color: #666;
}

.order-form {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.order-form h3 {
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F2360A;
}

.delivery-options {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.delivery-option {
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.delivery-option:hover,
.delivery-option.selected {
    border-color: #F2360A;
    background-color: rgba(241, 90, 41, 0.05);
}

.delivery-option i {
    font-size: 24px;
    color: #F2360A;
    margin-bottom: 10px;
}

.delivery-option span {
    display: block;
    font-weight: 600;
    color: #222;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method {
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method:hover,
.payment-method.selected {
    border-color: #F2360A;
    background-color: rgba(241, 90, 41, 0.05);
}

.payment-method i {
    font-size: 24px;
    color: #F2360A;
    margin-bottom: 10px;
}

.payment-method span {
    display: block;
    font-weight: 600;
    color: #222;
}

.order-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.continue-shopping {
    flex: 1;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #222;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.continue-shopping:hover {
    background-color: #222;
    color: white;
}

.checkout-btn {
    flex: 2;
    padding: 15px;
    background-color: #F2360A;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #d24c22;
}

/* Contact Section */
.contact-section {
    padding: 100px 80px;
    background-color: #fff;
}

.contact-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F2360A;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail i {
    background-color: #F2360A;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
}

.contact-detail-text p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.opening-hours {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.opening-hours h4 {
    font-size: 20px;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 500;
    color: #333;
}

.hours-list li span:last-child {
    color: #666;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: #F2360A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    
    text-decoration: none;
}

.social-link:hover {
    background-color: #d24c22;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F2360A;
    text-align: center;
}

.map-container {
    margin-top: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer Section */
footer {
    background: linear-gradient(to right, #222, #333);
    color: white;
    padding: 70px 80px 30px;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/10.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #F2360A;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #F2360A;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-column p {
    font-size: 16px;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #F2360A;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 12px;
    color: #F2360A;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #bbb;
}

.contact-info li i {
    color: #F2360A;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.opening-hours {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 500;
    color: #ddd;
}

.hours-list li span:last-child {
    color: #bbb;
}

.newsletter {
    margin-top: 20px;
}

.newsletter p {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-btn {
    padding: 12px 20px;
    background-color: #F2360A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

.newsletter-btn:hover {
    background-color: #d24c22;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #F2360A;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-method {
    width: 50px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ddd;
}

.back-to-top {
    background-color: #F2360A;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
}

.back-to-top:hover {
    background-color: #d24c22;
    transform: translateY(-5px);
}

/* =========================================== */
/* RESPONSIVE DESIGN IMPROVEMENTS */
/* =========================================== */

/* Large screens (1024px and above) - default styles already applied */

/* Tablets and small laptops (1024px and below) */
@media (max-width: 1024px) {
    header {
    padding: 15px 30px;
    }
    
    .account {
    right: 30px;
    }
    
    .cake-section,
    .about-section,
    .menu-section,
    .reservation-section,
    .order-section,
    .contact-section,
    footer {
    padding: 80px 30px;
    }
    
    .cake-content {
    flex-direction: column;
    gap: 50px;
    }
    
    .cake-content .image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    }
    
    .about-content {
    flex-direction: column;
    }
    
    .menu-items {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .reservation-content {
    flex-direction: column;
    gap: 50px;
    }
    
    .order-content {
    flex-direction: column;
    }
    
    .contact-content {
    flex-direction: column;
    }
    
    .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    header {
    padding: 15px 20px;
    flex-wrap: wrap;
    }

    .logo img {
    height: 70px;
    }

    nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
    display: none;
    }

    nav.active {
    display: block;
    }

    nav ul {
    flex-direction: column;
    gap: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
    }

    nav ul li {
    border-bottom: 1px solid #f0f0f0;
    }

    nav ul li:last-child {
    border-bottom: none;
    }

    nav ul li a {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    }

    .menu-toggle {
    display: block;
    }

    .account {
    position: static;
    font-size: 16px;
    }
    
    .cake-section {
    padding: 60px 20px;
    margin-top: 0;
    }
    
    .cake-content .text h1 {
    font-size: 36px;
    }
    
    .cake-content .text p {
    font-size: 18px;
    }
    
    .watch-video {
    font-size: 20px;
    }
    
    .buttons {
    flex-direction: column;
    gap: 15px;
    }
    
    .read-more, .order-now {
    padding: 15px 40px;
    font-size: 16px;
    width: 100%;
    }
    
    .about-section {
    padding: 60px 20px;
    }
    
    .about-content .text h2 {
    font-size: 32px;
    }
    
    .about-stats {
    flex-wrap: wrap;
    justify-content: center;
    }
    
    .stat {
    flex: 0 0 50%;
    margin-bottom: 20px;
    }
    
    .menu-section {
    padding: 60px 20px;
    }
    
    .section-title h2 {
    font-size: 32px;
    }
    
    .menu-categories {
    gap: 10px;
    }
    
    .category-btn {
    padding: 10px 20px;
    font-size: 16px;
    }
    
    .menu-items {
    grid-template-columns: 1fr;
    gap: 30px;
    }
    
    .reservation-section {
    padding: 60px 20px;
    }
    
    .reservation-text h2 {
    font-size: 32px;
    }
    
    .reservation-form {
    padding: 30px 20px;
    }
    
    .form-row {
    flex-direction: column;
    gap: 0;
    }
    
    .order-section {
    padding: 60px 20px;
    }
    
    .delivery-options,
    .payment-methods {
    flex-direction: column;
    }
    
    .order-actions {
    flex-direction: column;
    }
    
    .contact-section {
    padding: 60px 20px;
    }
    
    .contact-form {
    padding: 30px 20px;
    }
    
    .map-container {
    margin-top: 50px;
    }
    
    footer {
    padding: 50px 20px 20px;
    }
    
    .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    }
    
    .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    header {
    padding: 12px 15px;
    }

    .logo img {
    height: 60px;
    }

    .account {
    font-size: 14px;
    }

    .account span {
    display: none;
    }
    
    .cake-section {
    padding: 40px 15px;
    }
    
    .cake-content .text h1 {
    font-size: 28px;
    }
    
    .cake-content .text p {
    font-size: 16px;
    }
    
    .watch-video {
    font-size: 18px;
    }
    
    .watch-video i {
    padding: 8px;
    font-size: 20px;
    }
    
    .about-section {
    padding: 40px 15px;
    }
    
    .about-content .text h2 {
    font-size: 26px;
    }
    
    .about-stats {
    gap: 15px;
    }
    
    .stat h4 {
    font-size: 28px;
    }
    
    .menu-section {
    padding: 40px 15px;
    }
    
    .section-title h2 {
    font-size: 26px;
    }
    
    .section-title p {
    font-size: 16px;
    }
    
    .category-btn {
    padding: 8px 15px;
    font-size: 14px;
    }
    
    .menu-item-content {
    padding: 20px;
    }
    
    .menu-item-title,
    .menu-item-price {
    font-size: 18px;
    }
    
    .reservation-section {
    padding: 40px 15px;
    }
    
    .reservation-text h2 {
    font-size: 26px;
    }
    
    .reservation-feature {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    }
    
    .reservation-form h3 {
    font-size: 22px;
    }
    
    .order-section {
    padding: 40px 15px;
    }
    
    .order-cart,
    .order-form {
    padding: 20px;
    }
    
    .order-cart h3,
    .order-form h3 {
    font-size: 22px;
    }
    
    .cart-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    }
    
    .cart-item-details {
    width: 100%;
    }
    
    .contact-section {
    padding: 40px 15px;
    }
    
    .contact-info h3,
    .contact-form h3 {
    font-size: 22px;
    }
    
    .contact-detail {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    }
    
    .social-links {
    justify-content: center;
    }
    
    footer {
    padding: 40px 15px 15px;
    }
    
    .footer-column h4 {
    font-size: 18px;
    }
    
    .footer-logo img {
    height: 60px;
    }
    
    .newsletter-form {
    flex-direction: column;
    }
    
    .back-to-top {
    width: 35px;
    height: 35px;
    bottom: 20px;
    right: 20px;
    }
}

/* Small mobile phones (360px and below) */
@media (max-width: 360px) {
    .cake-content .text h1 {
    font-size: 24px;
    }
    
    .about-content .text h2,
    .section-title h2,
    .reservation-text h2 {
    font-size: 22px;
    }
    
    .stat {
    flex: 0 0 100%;
    }
    
    .menu-item-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    }
    
    .add-to-cart {
    width: 100%;
    justify-content: center;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


.account {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 200; 
}

.account-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account i {
    color: #F2360A;
}

.account:hover {
    color: #F2360A;
}


.account-dropdown {
    position: absolute;
    top: 140%; 
    right: 0;
    width: 290px;
    background: #ffffff !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    z-index: 1001;
    border-top: 3px solid #F2360A;
    text-align: left;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}


.account-dropdown.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-form-box h3 {
    font-size: 18px;
    color: #222 !important;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

.dropdown-form-box .form-group {
    margin-bottom: 12px;
    text-align: left;
}

.dropdown-form-box .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
    outline: none;
    color: #333;
    background-color: #fff;
}

.dropdown-form-box .form-control:focus {
    border-color: #F2360A;
}


.dropdown-form-box .submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #F2360A;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dropdown-form-box .submit-btn:hover {
    background-color: #d24c22;
}


.signup-only {
    display: none !important;
}

.account-dropdown.register-mode .signup-only {
    display: block !important;
}

.switch-form-text {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: #666;
}

.switch-form-text a {
    color: #F2360A;
    text-decoration: none;
    font-weight: bold;
}

.switch-form-text a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .account-dropdown {
        right: -10px;
        top: 150%;
    }
}