/* --- Variables & Reset --- */
:root {
    --midnight-blue: #0A2540;
    --mint: #00E5C4;
    --mint-light: #E0FFF9;
    --white: #FFFFFF;
    --off-white: #F4F7F6;
    --text-dark: #1a1a1a;
    --text-gray: #4a5568;
    
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-container: 1200px;
    --spacing-section: 100px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background-color: var(--mint);
    color: var(--midnight-blue);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 4px;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    border: 2px solid var(--mint);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--midnight-blue);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--midnight-blue);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 4px;
    font-family: var(--font-display);
    border: 2px solid var(--midnight-blue);
}

.btn-secondary:hover {
    background-color: var(--midnight-blue);
    color: var(--white);
}

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--midnight-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--midnight-blue);
    position: relative;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--mint);
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--midnight-blue);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--mint);
    color: var(--midnight-blue) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--midnight-blue);
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--midnight-blue);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--mint);
}

.mobile-menu-content {
    text-align: center;
}

.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin: 20px 0;
    font-weight: 700;
}

.mobile-link:hover {
    color: var(--mint);
}

.mobile-contact {
    margin-top: 40px;
}

.mobile-contact p {
    color: var(--mint);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--off-white);
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 150px;
}

.hero-content {
    max-width: 540px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.accent-dot {
    width: 12px;
    height: 12px;
    background: var(--mint);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--midnight-blue);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--mint);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(0, 229, 196, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--midnight-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--midnight-blue);
    opacity: 0.2;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.img-card {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.15);
}

.main-img {
    width: 380px;
    height: 500px;
    top: 40px;
    right: 0;
    z-index: 2;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.secondary-img {
    width: 280px;
    height: 200px;
    bottom: 60px;
    left: 0;
    z-index: 3;
    border: 8px solid var(--white);
}

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

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--midnight-blue);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 4;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--mint);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.geo-shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--mint);
    top: -30px;
    right: 60px;
    border-radius: 50%;
    opacity: 0.8;
}

.shape-2 {
    width: 80px;
    height: 80px;
    border: 4px solid var(--midnight-blue);
    bottom: 0;
    right: 40px;
    transform: rotate(15deg);
}

/* Wave */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave {
    width: 100%;
    height: 120px;
}

/* --- Sections General --- */
.section {
    padding: var(--spacing-section) 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--midnight-blue);
    margin-bottom: 24px;
}

.text-mint {
    color: var(--mint);
}

.section-header {
    margin-bottom: 60px;
}

/* --- About Section --- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: 8px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.1);
}

.about-pattern {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--mint) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: -1;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--midnight-blue);
    margin-bottom: 24px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--midnight-blue);
}

.feature-list svg {
    color: var(--mint);
    flex-shrink: 0;
}

/* --- Amenities Section --- */
.amenities {
    background: var(--midnight-blue);
    padding: 120px 0;
}

.amenities .section-title {
    color: var(--white);
    text-align: center;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.amenity-card {
    padding: 48px 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);
}

.card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-mint {
    background: var(--mint);
}

.icon-wrap {
    margin-bottom: 24px;
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-dark h3 {
    color: var(--white);
}

.card-mint h3 {
    color: var(--midnight-blue);
}

.amenity-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.card-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.card-mint p {
    color: var(--midnight-blue);
    opacity: 0.8;
}

/* --- Gallery Section --- */
.gallery {
    background: var(--off-white);
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.gallery-item.tall {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:not(.large):not(.tall) {
    grid-column: span 4;
}

/* --- Contact Section --- */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .contact-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    font-weight: 600;
}

.info-item .value {
    font-size: 1.25rem;
    color: var(--midnight-blue);
    font-weight: 600;
}

.info-item a.value:hover {
    color: var(--mint);
}

/* Form */
.contact-form-wrapper {
    background: var(--off-white);
    padding: 48px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 1.75rem;
    color: var(--midnight-blue);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--midnight-blue);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 16px;
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-message h3 {
    color: var(--midnight-blue);
    margin: 16px 0 8px;
}

.success-message p {
    color: var(--text-gray);
}

/* --- Footer --- */
.footer {
    background: var(--midnight-blue);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.4;
}

.footer-logo span {
    color: var(--mint);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--mint);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 24px;
}

.footer-copy .small {
    font-size: 0.75rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-wrapper {
        order: -1;
    }
    
    .about-img {
        height: 400px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item:not(.large):not(.tall) {
        grid-column: span 1;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .amenity-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large,
    .gallery-item.tall,
    .gallery-item:not(.large):not(.tall) {
        grid-column: span 1;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}
