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

:root {
    --primary: #b76e79;
    --primary-light: #d4a5a5;
    --secondary: #c9a959;
    --dark: #2d2d2d;
    --text: #4a4a4a;
    --text-light: #7a7a7a;
    --cream: #faf8f5;
    --light: #f5f3f0;
    --white: #fff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 300;
}

.section-header p {
    color: var(--text-light);
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 18px 50px;
}

.btn-block {
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.header.scrolled .nav-link {
    color: var(--dark);
}

.header.scrolled .logo-text {
    color: var(--dark);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 5px;
}

.logo-line {
    width: 40px;
    height: 1px;
    background: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .hamburger span {
    background: var(--dark);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, 0.5);
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 8px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 20px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--primary);
    z-index: -1;
}

.about-content .section-label {
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 300;
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 300;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.menu-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.menu-card .card-image {
    height: 200px;
    overflow: hidden;
}

.menu-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.menu-card .card-content {
    padding: 25px;
    text-align: center;
}

.menu-card .card-content h3 {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 10px;
}

.menu-card .card-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.testimonial-card p {
    color: var(--text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 400;
}

.author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta {
    background: var(--primary);
    text-align: center;
    padding: 120px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col .hours li {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col .contact-info i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.4);
}

.page-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&h=600&fit=crop') center/cover no-repeat;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, 0.6);
}

.page-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 200;
    letter-spacing: 10px;
    margin-bottom: 15px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    text-align: center;
    max-width: 400px;
}

.modal-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}
