/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-color: #000000;
    --text-color: #000000;
    --text-light: #666666;
    --bg-light: #F8F8F5;
    --bg-main: #F8F8F5;
    --footer-bg: #CFCFC4;
    --white: #ffffff;
    --border-color: #000000;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-main);
    font-weight: 400;
}

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

/* Header */
.header {
    background-color: var(--bg-main);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a.active {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: var(--bg-light);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background-color: var(--bg-main);
    color: var(--text-color);
    padding: 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    max-width: 600px;
    margin-left: 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: pre-line;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

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

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

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

/* Sections */
.features {
    padding: 5rem 0;
    background: var(--bg-main);
}

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

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

.feature-card {
    background: var(--white);
    padding: 0;
    border-radius: 0;
    text-align: left;
    transition: transform 0.3s;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.feature-card-content {
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-feature {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-feature-secondary {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .feature-actions {
        flex-direction: column;
    }
    .btn-feature,
    .btn-feature-secondary {
        width: 100%;
        min-width: unset;
    }
}

/* Location Section */
.location {
    padding: 4rem 0;
    background: var(--bg-main);
}

.location-content {
    text-align: center;
}

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
}

address {
    font-style: normal;
    line-height: 2;
}

/* Page Header */
.page-header {
    background: var(--white);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* About Page Specific Layout */
.about-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-text {
    line-height: 1.8;
}

.content-text h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.8rem;
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Floating Image for About Page */
.content-image-float {
    float: right;
    width: 45%;
    max-width: 500px;
    margin: 0 0 2rem 2rem;
    shape-outside: margin-box;
}

.content-image-float img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: block;
}

/* Clear float after image section */
.content-text::after {
    content: "";
    display: table;
    clear: both;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-content {
    padding: 1.5rem;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--text-color);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-color);
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section h3 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section address {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Pricing Styles */
.pricing-section {
    margin-bottom: 4rem;
}

.pricing-section-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu Table Style */
.menu-table {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
}

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

.menu-item:hover {
    background-color: var(--bg-light);
}

.menu-item-content {
    flex: 1;
}

.menu-item-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.menu-item-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 2rem;
}

/* Promotions Banner */
.promotions-banner {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 4rem;
}

.promotions-banner h2 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.promo-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.promo-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.promo-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.promo-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.promo-first {
    border-top: 3px solid var(--primary-color);
}

.promo-package {
    border-top: 3px solid var(--primary-color);
}

/* Pricing Note */
.pricing-note {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.pricing-note p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tips/Articles Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.tip-card-content {
    padding: 1.5rem;
}

.tip-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.tip-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tip-card a {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    min-height: 200px;
    position: relative;
}

.image-placeholder::before {
    content: "📷 Image Placeholder";
    text-align: center;
}

.hero-image {
    opacity: 0.9;
}

/* Social Icons in Header */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.welcome-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.welcome-intro {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.welcome-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 1rem;
        z-index: 999;
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-content {
        flex-wrap: wrap;
        position: relative;
    }

    .language-switcher {
        order: -1;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 2rem 1rem;
        margin-left: 0;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 3rem 0;
    }

    .welcome-content h2 {
        font-size: 2rem;
    }

    .welcome-intro {
        font-size: 1.1rem;
    }

    .welcome-content p {
        font-size: 1rem;
        text-align: left;
    }

    /* Features/Service Cards */
    .features-grid,
    .services-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card img,
    .service-card img,
    .tip-card img {
        height: 250px;
    }

    /* Content Grids */
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-image {
        order: -1;
    }

    /* About page floating image on mobile */
    .content-image-float {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 2rem 0;
    }

    /* Pricing */
    .promotions-banner {
        padding: 1.5rem;
    }

    .promotions-banner h2 {
        font-size: 1.5rem;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-section-title {
        font-size: 1.5rem;
    }

    .menu-table {
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .menu-item {
        flex-direction: row;
        align-items: center;
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .menu-item-content {
        flex: 1;
        min-width: 0;
    }

    .menu-item-content h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        word-wrap: break-word;
    }

    .menu-item-content p {
        font-size: 0.85rem;
        word-wrap: break-word;
    }

    .menu-price {
        margin-left: 0;
        margin-top: 0;
        font-size: 1.4rem;
        flex-shrink: 0;
        text-align: right;
        white-space: nowrap;
        min-width: fit-content;
    }

    .pricing-note {
        padding: 1.5rem;
    }

    /* Page Headers */
    .page-header {
        padding: 2.5rem 0 1.5rem;
    }

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

    .page-subtitle {
        font-size: 1rem;
    }

    /* Sections */
    .content-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    /* Contact Form */
    .contact-form-container {
        margin-top: 2rem;
    }

    /* Map */
    .map-container iframe {
        height: 300px;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    /* Article Content */
    .article-content {
        padding: 1.5rem 1rem;
    }

    .article-content h1 {
        font-size: 2rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .welcome-content h2 {
        font-size: 1.75rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-section-title {
        font-size: 1.25rem;
    }

    .menu-item {
        padding: 1rem 0.75rem;
    }

    .menu-price {
        font-size: 1.3rem;
    }
}

