:root {
    --primary: #2c2c2c;
    --secondary: #d4a574;
    --accent: #f5f5f5;
    --text: #1a1a1a;
    --light-text: #666;
    --border: #e8e8e8;
    --white: #ffffff;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Segoe UI', 'Helvetica Neue', -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==================== HEADER ==================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

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

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cart-icon {
    cursor: pointer;
    font-size: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    display: none;
    background: var(--accent);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
}

.mobile-nav-link:hover {
    background: var(--white);
    color: var(--secondary);
}

/* ==================== CONTENT ==================== */
.content {
    flex: 1;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

/* ==================== HOME PAGE ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a3a 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #c4935a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.about-text p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
}

/* ==================== SERVICES PREVIEW ==================== */
.services-preview {
    padding: 5rem 2rem;
    background: var(--accent);
}

.services-preview h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary);
}

/* ==================== PRODUCT SLIDER ==================== */
.products-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.products-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slider-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary);
}

.slider {
    flex: 1;
    overflow: hidden;
}

.product-slide {
    background: var(--accent);
    border-radius: 2px;
    overflow: hidden;
    text-align: center;
    padding: 2rem;
}

.product-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.product-slide h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.add-cart-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.add-cart-btn:hover {
    background: var(--secondary);
}

/* ==================== MENU PAGE ==================== */
.page-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 3rem 2rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.services-list {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 2px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-left-color: var(--secondary);
    box-shadow: var(--shadow-light);
}

.service-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.service-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service-info p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
}

.booking-section {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--primary);
    border-radius: 2px;
    text-align: center;
}

.booking-section h2 {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.booking-btn {
    background: var(--secondary);
    color: var(--white);
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background: #c4935a;
    transform: translateY(-2px);
}

/* ==================== CONTACT PAGE ==================== */
.contact-wrapper {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-item p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-item a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--text);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.map-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.map-section h2 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
    color: var(--primary);
}

.map-container {
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary);
    color: var(--white);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== NOTIFICATION ==================== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    font-size: 0.95rem;
    z-index: 2000;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow-medium);
    max-width: 300px;
}

.notification.success {
    background: #4caf50;
    color: white;
}

.notification.error {
    background: #f44336;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .header-content {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        height: 200px;
    }

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

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}