* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A961;
    --dark-bg: #0A0E27;
    --navy: #1A1F3A;
    --light-bg: #FAFAFA;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0A0E27;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}


.home-button {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 1000;
    padding: 12px 30px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.home-button:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateX(-5px);
}

.hero-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(10, 14, 39, 0.6), rgba(10, 14, 39, 0.3)),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=2000&h=1200&fit=crop') center/cover no-repeat;         
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(10, 14, 39, 0.3) 0%, rgba(10, 14, 39, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.logo-icon {
    font-size: 2.5em;
    color: var(--gold);
}

.logo-text {
    font-size: 1.2em;
    letter-spacing: 8px;
    font-weight: 300;
    color: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5em;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2em;
    letter-spacing: 3px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}


.main-container {
    background: var(--white);
    position: relative;
}


.home-button-container {
    padding: 30px 60px;
    background: var(--white);
}

.home-button {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 0.9em;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.home-button:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateX(-5px);
}


.luxury-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 40px 20px;
    background: var(--white);
}
.luxury-tab {
    position: relative;
    padding: 20px 60px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}
.luxury-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.luxury-tab.active::before,
.luxury-tab:hover::before {
    transform: scaleX(1);
}

.tab-number {
    font-size: 1.5em;
    color: var(--gold);
    font-weight: 300;
}
.tab-label {
    font-size: 1em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #B8B8B8;
    transition: color 0.3s ease;
}
.luxury-tab:hover .tab-label,
.luxury-tab.active .tab-label {
    color: var(--gold);
}


.tab-panel {
    display: none;
    animation: fadeIn 0.6s ease;
    background: var(--white);
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.content-header {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5em;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.1em;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 300;
}


.instagram-embed-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    background: var(--white);
    border-radius: 8px;
    margin: 0 60px 40px;
}

.embed-container {
    max-width: 540px;
    width: 100%;
}

.instagram-media {
    margin: 0 auto !important;
}


.luxury-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    padding: 0 60px 100px;
    max-width: 1600px;
    margin: 0 auto;
    background: transparent;
}
.gallery-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}
.gallery-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(201, 169, 97, 0.3);
}
.card-image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-content-wrapper video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.video-caption {
    color: white;
    text-align: center;
    margin-top: 30px;
    font-size: 1.2em;
    font-family: 'Cormorant Garamond', serif;
}

.video-caption .location {
    display: block;
    font-size: 0.8em;
    color: #C9A961;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.video-caption .title {
    display: block;
    font-size: 1.8em;
    font-weight: 300;
    letter-spacing: 2px;
}



.card-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .card-overlay {
    opacity: 0.8;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.gallery-card:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
}

.video-play-button svg {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}


.card-content {
    padding: 35px 30px;
    background: var(--white);
}

.card-location {
    font-size: 0.75em;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2em;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.card-description {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 300;
}

.card-price {
    font-size: 1em;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== MODAL ===== */
.luxury-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.luxury-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content-wrapper {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    animation: modalScaleIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalScaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content-wrapper img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}


.modal-content-wrapper .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.modal-content-wrapper .video-container iframe,
.modal-content-wrapper .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-content-wrapper video {
    max-width: 100%;
    max-height: 90vh;
    width: 100%;
    height: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.video-caption {
    color: white;
    text-align: center;
    margin-top: 30px;
    font-size: 1.2em;
    font-family: 'Cormorant Garamond', serif;
}

.video-caption .location {
    display: block;
    font-size: 0.8em;
    color: #C9A961;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.video-caption .title {
    display: block;
    font-size: 1.8em;
    font-weight: 300;
    letter-spacing: 2px;
}

.modal-close {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: rotate(90deg);
}


@media (max-width: 1200px) {
    .luxury-gallery {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        padding: 0 40px 80px;
        gap: 35px;
    }

    .home-button-container {
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .logo-text {
        font-size: 1em;
        letter-spacing: 5px;
    }

    .section-title {
        font-size: 2.5em;
    }

    .luxury-tabs {
        padding: 30px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .luxury-tab {
        padding: 15px 30px;
        justify-content: center;
    }

    .luxury-gallery {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
        gap: 30px;
    }

    .card-image-wrapper {
        height: 300px;
    }

    .content-header {
        padding: 40px 20px;
    }

    .modal-close {
        width: 50px;
        height: 50px;
        top: 20px;
        right: 20px;
        font-size: 24px;
    }

    .instagram-embed-section {
        margin: 0 20px 40px;
        padding: 20px;
    }

    .home-button-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2em;
    }

    .hero-subtitle {
        font-size: 0.9em;
    }

    .logo-icon {
        font-size: 2em;
    }

    .logo-text {
        font-size: 0.9em;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 2em;
    }

    .section-description {
        font-size: 1em;
    }

    .card-title {
        font-size: 1.6em;
    }

    .card-content {
        padding: 25px 20px;
    }

    .luxury-gallery {
        gap: 25px;
    }

    .tab-number {
        font-size: 1.2em;
    }

    .tab-label {
        font-size: 0.85em;
    }

    .home-button {
        padding: 10px 20px;
        font-size: 0.8em;
    }
}
