/* Reset & Base */
body {
    margin: 0;
    font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
    background: #fff5f5;
    color: #212121;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    margin: 0 0 10px;
}

section {
    padding: 60px 20px 40px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navbar */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5vw;
    background: rgba(255,255,255,0.96);
    position: sticky;
    width: 100vw;
    left: 0;
    top: 0;
    z-index: 10;
    box-shadow: 0 1px 16px #1112;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #d32f2f;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.logo img {
    width: 200px;
    height: 100px;
    margin-right: 8px;
    transition: transform 0.2s;
}
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav li {
    margin: 0 18px;
}
nav a {
    font-weight: 500;
    transition: color 0.2s;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
nav a:hover {
    color: #d32f2f;
    border-bottom: 2px solid #d32f2f;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(120deg,#fff5f5 50%,#ffd6d6 100%);
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: center/cover no-repeat;
    opacity: 0.22;
    z-index: 0;
    transition: background-image 0.8s cubic-bezier(.4,0,.2,1);
    filter: blur(0.5px);
    pointer-events: none;
}
.hero-content {
    z-index: 1;
    margin-top: 80px;
}
.hero h1 {
    font-size: 3.2rem;
    color: #d32f2f;
    font-weight: 900;
    letter-spacing: 2px;
}
.hero p {
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: #b71c1c;
}
.btn {
    background: linear-gradient(90deg, #d32f2f, #ff5252);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 1.12rem;
    font-weight: 600;
    box-shadow: 0 4px 20px #d32f2f33;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 32px #ff525233;
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    left: 0;
    bottom: 32px;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.hero-slider-dots .dot {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 5px;
    background: #ffd6d6;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: 2px solid #d32f2f44;
}
.hero-slider-dots .dot.active,
.hero-slider-dots .dot:hover {
    background: #d32f2f;
    border-color: #ff5252;
    transform: scale(1.2);
}

/* Parallax About Section */
.about {
    background: linear-gradient(105deg,#fff5f5 30%, #ffd6d6 90%);
    position: relative;
    overflow: hidden;
}
.parallax {
    background-attachment: fixed;
}
.about-inner {
    margin: auto;
    background: #fff7f7;
    padding: 36px 32px;
    border-radius: 24px;
    box-shadow: 0 2px 24px #d32f2f22;
    animation: fadeInUp 1s;
}
.about h2 {
    color: #d32f2f;
    font-size: 2.3rem;
}
.about p {
    color: #b71c1c;
    font-size: 1.2rem;
}

/* Menu Section */
.menu h2 {
    text-align: center;
    color: #d32f2f;
    font-size: 2.4rem;
    margin-bottom: 30px;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    gap: 36px;
    margin: 0 auto;
    max-width: 960px;
}
.menu-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 20px #d32f2f15;
    padding: 28px 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.22s, box-shadow 0.22s;
    position: relative;
    z-index: 1;
}
.menu-card:hover {
    transform: translateY(-8px) scale(1.035) rotate(-2deg);
    box-shadow: 0 8px 32px #ff525233;
}
.menu-card img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: transform 0.2s;
}
.menu-card:hover img {
    transform: scale(1.08) rotate(8deg);
}
.menu-card h3 {
    color: #d32f2f;
    margin-bottom: 8px;
    font-size: 1.25rem;
}
.menu-card p {
    color: #b71c1c;
    font-size: 1rem;
    margin-bottom: 8px;
}
.menu-card span {
    color: #ff5252;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Large Menu Section */
.menu-large-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}
.menu-large-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 4px 32px #d32f2f18, 0 1.5px 0 #ff525222;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    min-width: 320px;
    max-width: 520px;
    width: 100%;
    transition: transform 0.22s, box-shadow 0.22s;
    border: 2px solid #ffd6d6;
    position: relative;
    padding: 0;
}
.menu-large-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px #ff525233, 0 2px 0 #d32f2f22;
    border-color: #ff5252;
}
.menu-large-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    object-fit: cover;
}
.menu-large-info {
    flex: 1;
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-large-info h3 {
    color: #d32f2f;
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.menu-large-info p {
    color: #b71c1c;
    font-size: 1.13rem;
    margin-bottom: 16px;
}
.menu-large-info span {
    color: #ff5252;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

@media (max-width:900px) {
    .menu-large-grid { flex-direction: column; gap: 28px; }
    .menu-large-card { flex-direction: column; max-width: 100%; }
    .menu-large-card img { width: 100%; height: 180px; border-radius: 32px 32px 0 0; }
    .menu-large-info { padding: 22px 18px 18px 18px; }
}
@media (max-width:700px) {
    .hero h1 { font-size: 2.1rem;}
    .about-inner {padding: 24px 12px;}
    nav {flex-direction: column; padding: 10px 4vw;}
    nav ul {flex-direction: column;}
    nav li {margin: 8px 0;}
    .menu-grid {gap: 18px;}
    section {padding: 40px 5px 30px;}
}

/* Contact Section */
.contact {
    background: linear-gradient(90deg,#fff5f5 70%, #ffd6d6 100%);
    text-align: center;
}
.contact-form {
    max-width: 430px;
    margin: 0 auto 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ffd6d6;
    font-size: 1rem;
    font-family: inherit;
    background: #fff7f7;
    resize: none;
}
.contact-form textarea {
    min-height: 88px;
}
.contact-form button {
    margin-top: 5px;
}
.contact-info {
    color: #d32f2f;
    font-size: 1.08rem;
    margin-top: 14px;
}

/* Footer */
footer {
    background: #d32f2f;
    color: #fff7f7;
    text-align: center;
    padding: 18px 0 14px;
    letter-spacing: 1px;
    font-size: 1rem;
    border-radius: 28px 28px 0 0;
    margin-top: 32px;
}

/* Curtain Effect */
.curtain {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
    display: flex;
}
.curtain-part {
    flex: 1;
    background: linear-gradient(120deg, #d32f2f 80%, #ff5252 100%);
    transition: transform 1.1s cubic-bezier(.77,0,.18,1.01);
    will-change: transform;
}
.curtain-left {
    border-right: 2px solid #fff7f733;
    transform: translateX(-100%);
}
.curtain-right {
    border-left: 2px solid #fff7f733;
    transform: translateX(100%);
}
/* Curtain closed state (covering the page) */
.curtain.closed .curtain-left {
    transform: translateX(0);
}
.curtain.closed .curtain-right {
    transform: translateX(0);
}
.curtain.open .curtain-left {
    transform: translateX(-100%);
}
.curtain.open .curtain-right {
    transform: translateX(100%);
}

/* Animations */
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}
@keyframes slideIn {
    from {transform: translateY(-60px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes popIn {
    0% {transform: scale(0.7); opacity: 0;}
    90% {transform: scale(1.04);}
    100% {transform: scale(1); opacity: 1;}
}
.animate-slide {animation: slideIn 1.1s;}
.animate-fade {animation: fadeIn 1.6s;}
.animate-pop {animation: popIn 1.2s both;}

/* Franchise Section */
.franchise {
    background: linear-gradient(120deg, #fff5f5 60%, #ffd6d6 100%);
    padding: 70px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: visible;
}

.franchise-inner {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 48px 36px 36px 36px;
    border-radius: 32px;
    box-shadow: 0 8px 40px #d32f2f18, 0 1.5px 0 #ff525222;
    border: 2px solid #ffd6d6;
    position: relative;
    z-index: 3;
    margin-top: 40px;
}
.franchise h2 {
    color: #d32f2f;
    font-size: 2.5rem;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px #fff7ef;
    font-weight: 800;
    letter-spacing: 1px;
}
.franchise p {
    color: #b71c1c;
    font-size: 1.18rem;
    margin-bottom: 22px;
    line-height: 1.6;
}
.franchise ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
.franchise li {
    background: #fff5f5;
    color: #d32f2f;
    font-size: 1.08rem;
    margin-bottom: 0;
    text-align: left;
    padding: 12px 22px 12px 36px;
    border-radius: 18px;
    position: relative;
    min-width: 220px;
    box-shadow: 0 2px 12px #ff525211;
    border: 1.5px solid #ffd6d6;
    font-weight: 600;
    transition: box-shadow 0.2s, border 0.2s;
}
.franchise li::before {
    content: '★';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff5252;
    font-size: 1.1em;
}
.franchise li:hover {
    box-shadow: 0 4px 24px #ff525222;
    border: 1.5px solid #ff5252;
}
.franchise .btn {
    margin-top: 10px;
    font-size: 1.15rem;
    padding: 14px 38px;
    background: linear-gradient(90deg, #ff5252, #d32f2f 90%);
    box-shadow: 0 4px 20px #d32f2f33;
    border-radius: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s;
}
.franchise .btn:hover {
    background: linear-gradient(90deg, #d32f2f, #ff5252 90%);
    box-shadow: 0 8px 32px #ff525233;
    color: #fff;
}

/* Team Section */
.team {
    background: linear-gradient(100deg, #fff5f5 60%, #ffd6d6 100%);
    padding: 60px 20px 40px;
    text-align: center;
}
.team h2 {
    color: #d32f2f;
    font-size: 2.2rem;
    margin-bottom: 36px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #fff7ef;
}
.team-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}
.team-member {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 2px 16px #d32f2f15;
    padding: 32px 28px 22px;
    max-width: 260px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #ffd6d6;
    transition: box-shadow 0.2s, border 0.2s;
}
.team-member:hover {
    box-shadow: 0 8px 32px #ff525233;
    border: 2px solid #ff5252;
}
.team-member img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px #d32f2f22;
    border: 3px solid #fff5f5;
    background: #fff5f5;
}
.team-member h3 {
    color: #d32f2f;
    margin-bottom: 6px;
    font-size: 1.18rem;
    font-weight: 700;
}
.team-member p {
    color: #b71c1c;
    font-size: 1.05rem;
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .franchise-inner { padding: 28px 10px 24px 10px; }
    .franchise ul { flex-direction: column; gap: 10px; }
    .franchise li { min-width: 0; }
    .franchise::before { width: 70px; height: 70px; top: -30px; }
    .team-grid { flex-direction: column; gap: 24px; }
    .team-member { max-width: 100%; }
}
