* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?q=80&w=2080&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 0;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    color: #2c3e50;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Resort Name */
.resort-name {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    animation: fadeIn 1.2s ease-out;
    color: #1a1a1a;
}

/* Coming Soon Section */
.coming-soon {
    margin: 40px 0;
}

.coming-soon h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: pulse 2s ease-in-out infinite;
    color: #667eea;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.85;
    margin-top: 10px;
    color: #555;
}

/* Description */
.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 30px auto;
    max-width: 600px;
    opacity: 0.85;
    font-weight: 400;
    color: #444;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.social-icon:hover {
    background: #667eea;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
    font-size: 1rem;
    opacity: 0.85;
    color: #555;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    border-bottom-color: #667eea;
    color: #764ba2;
}

/* Background Decorations */
.bg-decoration,
.bg-decoration-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.bg-decoration {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.bg-decoration-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .resort-name {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .coming-soon h2 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .logo {
        max-width: 140px;
    }

    .social-links {
        gap: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .bg-decoration {
        width: 300px;
        height: 300px;
    }

    .bg-decoration-2 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .resort-name {
        font-size: 2rem;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .logo {
        max-width: 120px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .resort-name {
        font-size: 1.8rem;
    }

    .coming-soon h2 {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .logo {
        max-width: 100px;
    }
}
