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

:root {
    --bg-dark: #1E1E1E;
    --bg-light: #F4F4F4;
    --color-gold: #D4BC58;
    --text-dark: #333;
    --text-light: #FFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--bg-dark);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-light);
}

.lang-switcher a {
    color: #888;
    text-decoration: none;
    margin-left: 10px;
    font-size: 14px;
}

.lang-switcher a.active {
    color: var(--color-gold);
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--bg-dark);
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--bg-dark);
    color: var(--bg-dark);
}

.btn-outline:hover {
    background-color: var(--bg-dark);
    color: var(--color-gold);
}

.full-width {
    width: 100%;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Hero */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
    margin-top: 50px; /* Offset for header */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}
.hero .btn-outline {
    border-color: #fff;
    color: #fff;
    background: rgba(30,30,30,0.8);
}
.hero .btn-outline:hover {
    background: #fff;
    color: var(--bg-dark);
}

/* About */
.about-inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.highlight-gold {
    color: var(--color-gold);
    font-weight: 600;
}

.about-image {
    flex: 1;
}

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

/* Location */
.location {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.location h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.location-sub {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.location-bullets {
    margin-left: 20px;
    margin-bottom: 30px;
}

.location-bullets li {
    margin-bottom: 10px;
}

.location-footer {
    margin-bottom: 40px;
}

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

/* Layout */
.layout {
    background-color: var(--color-gold);
    color: var(--bg-dark);
}

.layout h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.layout-sub {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.layout-bullets {
    margin-left: 20px;
    font-size: 1.1rem;
}

.layout-bullets li {
    margin-bottom: 5px;
}

/* Gallery */
.gallery h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    grid-auto-rows: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-item img:hover {
    opacity: 0.8;
}

/* Footer & Form */
.footer-inner {
    display: flex;
    gap: 50px;
    padding-bottom: 80px;
}

.footer-text {
    flex: 1;
}

.footer-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer-form {
    flex: 1;
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.footer-form h3 {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: transparent;
    width: 100%;
    max-width: 500px;
    position: relative;
    border: 0;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-controls {
    text-align: center;
    margin-top: 20px;
}

.prev, .next {
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    user-select: none;
    padding: 10px 20px;
}

.prev:hover, .next:hover {
    color: var(--color-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    .header-inner {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    .nav {
        flex: 1;
        gap: 15px;
        overflow-x: auto;
        white-space: nowrap;
        margin-right: 15px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    .nav::-webkit-scrollbar {
        height: 0px;
        background: transparent;
    }
    .nav-link {
        font-size: 14px;
        flex-shrink: 0;
    }
    .lang-switcher {
        flex-shrink: 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .about-inner, .footer-inner {
        flex-direction: column;
    }
    .hero-buttons {
        flex-direction: column;
    }
}
