/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a961;
    --dark: #333;
    --light: #fff;
    --gray: #666;
}

body {
    font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: var(--light);
    border: 1px solid var(--gold);
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s;
}

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

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--light);
    border: 1px solid var(--gold);
    display: none;
    flex-direction: column;
    min-width: 80px;
    margin-top: 5px;
}

.lang-dropdown.active {
    display: flex;
}

.lang-dropdown button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.lang-dropdown button:hover {
    background: var(--gold);
    color: var(--light);
}

/* Menu Toggle */
.menu-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
}

.menu-toggle:hover span {
    background: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--light);
    padding: 60px 30px;
    transition: right 0.3s;
    z-index: 2000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: var(--dark);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: var(--gold);
}

/* Hero Split Screen */
.hero-split {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.hero-left,
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.hero-left {
    background: var(--gold);
    align-items: flex-start;
}

.hero-right {
    background: var(--light);
    align-items: flex-end;
}

.hero-title-left,
.hero-title-right {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title-left {
    color: var(--light);
}

.hero-title-right {
    color: var(--dark);
}

.hero-image-left,
.hero-image-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

.hero-image-left img {
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image-right {
    position: relative;
}

.hero-image-right img {
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contact Circle Button */
.contact-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.contact-circle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: var(--gold);
    color: var(--light);
}

.hero-link-left,
.hero-link-right {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: opacity 0.3s;
}

.hero-link-left {
    color: var(--light);
}

.hero-link-right {
    color: var(--dark);
}

.hero-link-left:hover,
.hero-link-right:hover {
    opacity: 0.7;
}

/* Content Section */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--light);
}

.content-left {
    background: var(--light);
    padding: 60px 40px;
}

.content-right {
    background: var(--gold);
    padding: 60px 40px;
}

.content-box {
    margin-bottom: 30px;
}

.content-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-right .content-box h2 {
    color: var(--light);
}

.info-list {
    font-size: 16px;
    line-height: 2;
}

.content-right .info-list {
    color: var(--light);
}

.room-preview,
.tram-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.room-preview img,
.tram-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Footer */
footer {
    background: var(--light);
    padding-top: 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
}

.footer-left {
    background: var(--light);
}

.footer-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.footer-right {
    background: var(--gold);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-address {
    color: var(--light);
}

.footer-address h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-address p {
    font-size: 16px;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background: var(--light);
    border-top: 1px solid #eee;
}

.footer-contact,
.social-links {
    text-align: center;
}

.footer-contact p,
.social-links p {
    margin: 10px 0;
}

.footer-contact a,
.social-links a {
    color: var(--dark);
    transition: color 0.3s;
}

.footer-contact a:hover,
.social-links a:hover {
    color: var(--gold);
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.social-buttons a {
    padding: 10px 20px;
    border: 2px solid var(--dark);
    border-radius: 25px;
    transition: all 0.3s;
}

.social-buttons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--light);
}

.footer-copyright {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: var(--gray);
    border-top: 1px solid #eee;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    border: 2px solid var(--dark);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.active {
    display: flex;
}

.scroll-top:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--light);
}

/* GALLERY PAGE */
.gallery-section {
    margin-top: 80px;
    padding: 60px 20px;
    background: var(--gold);
    min-height: 80vh;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.gallery-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-masonry {
    display: flex;
    gap: 15px;
    padding: 20px 0;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 300px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--light);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* CONTACT PAGE */
.contact-hero {
    margin-top: 80px;
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    max-width: 90%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 60px 40px;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 15px 0;
    line-height: 1.8;
}

.contact-form {
    padding-left: 40px;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid var(--dark);
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--dark);
    color: var(--light);
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--gold);
}

/* LEGAL PAGE */
.legal-section {
    margin-top: 80px;
    padding: 60px 40px;
    min-height: 80vh;
}

.legal-section h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
}

.documents-list {
    max-width: 800px;
    margin: 0 auto;
}

.document-item {
    display: block;
    padding: 15px 20px;
    margin: 10px 0;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 16px;
}

.document-item:hover {
    background: var(--gold);
    color: var(--light);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-left,
    .hero-right {
        min-height: 50vh;
    }
    
    .hero-title-left,
    .hero-title-right {
        font-size: 32px;
    }
    
    .contact-circle {
        width: 140px;
        height: 140px;
        font-size: 16px;
    }
    
    .content-section {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }
    
    .gallery-column {
        min-width: 250px;
    }
    
    .contact-hero-text {
        font-size: 28px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px 0;
    }
}
