:root {
    --primary-teal: #27B6B6;
    --secondary-black: #222;
    --white: #fff;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--secondary-black);
    box-sizing: border-box;
    min-height: 100vh;
    min-width: 100vw;
    position: relative;
}

/* Fullscreen video background */
#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    background: #000;
}

/* Header is now fully transparent */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4vw;
    background: transparent; /* transparent header */
    box-shadow: none;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 200px;
}

.logo-img {
    height: 200px;
    width: auto;
    display: block;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar a {
    text-decoration: none;
    color: var(--primary-teal);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1.15rem;
}

.navbar a:hover {
    color: var(--secondary-black);
}

.cta-btn {
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    margin-left: 2rem;
    transition: background 0.2s, color 0.2s;
    font-size: 1.1rem;
    border: none;
}

.cta-btn:hover {
    background: var(--secondary-black);
    color: var(--white);
}

.hero {
    text-align: center;
    margin-top: 14vh;
    color: var(--white);
    position: relative;
    min-height: 38vh;
    background: transparent;
}

.hero-slogan {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 5.2rem; /* doubled from 2.6rem */
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    text-shadow: 0 2px 8px rgba(39,182,182,0.18);
}

.hero-subtext {
    font-size: 2.4rem; /* doubled from 1.2rem */
    margin-bottom: 2.2rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(39,182,182,0.25);
    font-weight: 500;
}

.featured-resorts {
    background: rgba(255,255,255,0.97);
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.featured-resorts h2 {
    font-size: 2.2rem;
    color: var(--primary-teal);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.resort-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.resort-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(39,182,182,0.08);
    overflow: hidden;
    width: 280px;
    margin-bottom: 2rem;
    transition: transform 0.2s;
    border: 2px solid var(--primary-teal);
}

.resort-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.resort-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.resort-card h3 {
    margin: 1rem 0 0.5rem 0;
    color: var(--primary-teal);
    font-size: 1.1rem;
    font-weight: 600;
}

.resort-card p {
    color: var(--secondary-black);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-section {
    background: #e6fafb;
    padding: 3rem 0;
    text-align: center;
}

.about-section h2 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--secondary-black);
    font-weight: 500;
}

footer {
    background: var(--primary-teal);
    color: var(--white);
    padding: 1.2rem 0;
    text-align: center;
}

.footer-content ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0.5rem 0 0 0;
    padding: 0;
}

.footer-content ul li a {
    color: var(--white);
    text-decoration: underline;
    font-size: 0.98rem;
}