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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    height: 100vh;
    background-color: #000;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header & Navigation */
header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 30px 0;
    z-index: 100;
}

nav {
    width: 100%;
    padding-left: 10%;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/maldives.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin-left: 10%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #0056b3;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    padding: 15px 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
}

.email-text {
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.email {
    font-weight: 600;
    color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding-left: 5%;
    }
    
    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    header {
        padding: 20px 0;
    }
    
    .logo {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .hero {
        background-position: center center;
        align-items: flex-start;
        padding-top: 100px;
    }
    
    .hero-content {
        margin-left: 5%;
        margin-right: 5%;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        color: #FF8C00; /* Changed to orange for mobile */
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
