/* === OCEAN HOUSE — Condensed Premium Design === */

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

:root {
    --navy: #0a1628;
    --deep: #0f1d32;
    --sand: #e8ddd3;
    --sand-light: #f4efe9;
    --white: #ffffff;
    --warm: #c9b8a8;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --accent: #2c4a6e;
    --gold: #b8976a;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, Helvetica Neue, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

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

.section-label {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--white);
    color: var(--navy) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 300;
}

.mobile-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 1rem 2rem;
    border-radius: 2px;
    font-weight: 500;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.4) 0%,
        rgba(10, 22, 40, 0.2) 50%,
        rgba(10, 22, 40, 0.6) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
    z-index: 10;
}

.hero-location {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--gold);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-dot {
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    margin: 0.5rem auto 0;
    opacity: 0.7;
}

/* === RATING BAR === */
.rating-bar {
    padding: 2rem 0;
    background: var(--sand-light);
}

.rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.rating-stars {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 600;
}

.rating-text {
    font-weight: 300;
    color: var(--text-light);
}

/* === ACHIEVEMENT BANNER === */
.achievement-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gold) 0%, #d4795a 100%);
    color: var(--white);
}

.achievement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.achievement-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.achievement-text {
    text-align: left;
}

.achievement-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.achievement-description {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* === EXPERIENCE === */
.experience {
    padding: 120px 0;
}

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

.experience h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text);
}

.experience-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.experience-image {
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
}

/* === VIDEO EXPERIENCE === */
.video-experience {
    padding: 80px 0 0 0;
    background: var(--sand-light);
}

.video-content {
    text-align: center;
    margin-bottom: 60px;
}

.video-content h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text);
}

.video-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.experience-video {
    width: 100%;
    height: 100%;
    border: none;
}

/* === GALLERY === */
.gallery {
    padding: 120px 0;
}

.gallery-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-large {
    grid-column: span 2;
}

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

.gallery-item img {
    transition: transform 0.6s ease;
}

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

/* === PROPERTY === */
.property {
    padding: 120px 0;
    background: var(--sand-light);
}

.property h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 4rem;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.amenity-card {
    text-align: center;
    padding: 1.5rem 0;
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.amenity-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text);
}

.amenity-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* === LOCATION === */
.location {
    padding: 120px 0;
}

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

.location h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.location-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.location-details {
    border-top: 1px solid #e5e5e5;
}

.location-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.detail-label {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-light);
}

.detail-value {
    font-weight: 500;
    color: var(--text);
}

.location-image {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

/* === REVIEWS === */
.reviews {
    padding: 120px 0;
    background: var(--sand-light);
}

.reviews h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.review-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

/* === FAQ === */
.faq {
    padding: 120px 0;
}

.faq h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.faq-question {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    padding: 1.5rem 2rem 1.5rem 0;
    cursor: pointer;
    position: relative;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
}

details[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-answer a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
}

.faq-answer a:hover {
    color: var(--accent);
}

/* === CTA === */
.cta {
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    color: var(--sand);
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

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

.cta-contact {
    font-size: 0.875rem;
    color: var(--sand);
}

.cta-contact a {
    color: var(--gold);
    text-decoration: underline;
}

/* === FOOTER === */
.footer {
    padding: 3rem 0;
    background: var(--deep);
    color: var(--sand);
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-location {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    color: var(--sand);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--gold);
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--warm);
    opacity: 0.7;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .experience-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-large {
        grid-column: span 2;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-dot {
        display: none;
    }
    
    .experience,
    .video-experience,
    .gallery,
    .property,
    .location,
    .reviews,
    .faq,
    .cta {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    
    .gallery-large {
        grid-column: span 1;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .achievement-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .achievement-text {
        text-align: center;
    }
    
    .achievement-title {
        font-size: 1.5rem;
    }
    
    .achievement-description {
        font-size: 0.95rem;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
