@font-face {
    font-family: 'Soap Regular';
    src: url('./fonts/Soap Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    background-color: #FF3333;
    font-family: 'Soap Regular', Arial, sans-serif;
    color: white;
}

/* Navigation */
.navbar {
    background-color: #FF3333;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 120px 60px 40px 60px;
    height: 100vh;
    position: relative;
}

.text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.main-title {
    font-size: 180px;
    color: white;
    line-height: 0.8;
    font-weight: normal;
    text-align: center;
}

.hero-tagline {
    font-size: 24px;
    color: white;
    text-align: center;
    opacity: 0.9;
    margin-top: -20px;
}

.cta-button {
    background-color: white;
    color: #FF3333;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mascot-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot {
    width: auto;
    height: 700px;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.mascot:hover {
    transform: scale(1.05);
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-down:hover {
    opacity: 0.7;
}

.scroll-arrow {
    margin-top: 8px;
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 90%;
}

/* Section Titles */
.section-title {
    font-size: 80px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: normal;
}

/* Section Separators */
section {
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

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

.about-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: normal;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

/* Menu Navigation */
.menu-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-nav-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 15px;
    font-family: 'Soap Regular', Arial, sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-nav-btn:hover,
.menu-nav-btn.active {
    background-color: white;
    color: #FF3333;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: white;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.menu-item.hidden {
    display: none;
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.menu-item h4 {
    font-size: 18px;
    color: #FF3333;
    margin-bottom: 8px;
    font-weight: normal;
}

.menu-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
}

.menu-item .price {
    font-size: 16px;
    color: #FF3333;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #FF3333;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: left;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: #FF3333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.reviewer-details h5 {
    font-size: 16px;
    color: #FF3333;
    margin-bottom: 4px;
    font-weight: normal;
}

.stars {
    font-size: 14px;
    color: #FFD700;
}

.review-platform {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 10px;
}

.testimonial p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-style: italic;
}

/* Social Media Section */
.social-section {
    background-color: #FF3333;
    padding: 60px 0;
}

.social-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-description {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.social-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 20px 25px;
    border: 2px solid white;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 150px;
}

.social-link span {
    font-size: 24px;
    margin-bottom: 5px;
}

.social-link small {
    font-size: 12px;
    opacity: 0.8;
}

.social-link:hover {
    background-color: white;
    color: #FF3333;
}

/* Locations Section */
.location-section {
    background-color: #FF3333;
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-item {
    background-color: white;
    border-radius: 20px;
    padding: 25px;
    text-align: left;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.location-header h3 {
    font-size: 24px;
    color: #FF3333;
    font-weight: normal;
}

.location-badge {
    background-color: #FF3333;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.location-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.location-phone {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
}

.location-hours {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

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

.location-btn {
    text-decoration: none;
    color: #FF3333;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #FF3333;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.location-btn:hover {
    background-color: #FF3333;
    color: white;
}

/* Footer */
.footer {
    background-color: #FF3333;
    padding: 60px 0 20px 0;
    border-top: 3px solid white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    font-weight: normal;
}

.footer-section p {
    font-size: 14px;
    color: white;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .main-title {
        font-size: 140px;
    }

    .mascot {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        margin: 15px;
        position: fixed;
    }

    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 12px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
    }

    .hero-section {
        flex-direction: column;
        gap: 30px;
        padding: 140px 30px 40px 30px;
        text-align: center;
    }

    .main-title {
        font-size: 80px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .mascot {
        height: 350px;
    }

    .container {
        padding: 60px 20px;
        width: 95%;
    }

    .section-title {
        font-size: 50px;
    }

    .menu-nav {
        gap: 10px;
    }

    .menu-nav-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        font-size: 18px;
        padding: 12px 24px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 60px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .section-title {
        font-size: 40px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        justify-content: center;
    }

    .mascot {
        height: 280px;
    }
}