/* Main Colors based on provided design */
:root {
    --primary-color: #003a5d; /* Dark blue from the website */
    --primary-light: #0061a1; /* Lighter blue */
    --primary-lighter: #6ab0e2; /* Even lighter blue */
    --accent-color: #ffca00; /* Yellow from the logo/design */
    --secondary-color: #0099cc; /* Light blue for accents */
    --light-color: #ffffff;
    --dark-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background: linear-gradient(180deg, #d6e9f8 0%, #81bae8 30%, #3d85c6 60%, var(--primary-color) 100%); */
    background: linear-gradient(180deg, 
            rgba(214, 233, 248, 0.8) 0%, 
            rgba(129, 186, 232, 0.8) 30%, 
            rgba(61, 133, 198, 0.8) 60%, 
            rgba(0, 58, 93, 0.9) 100%
        ),
        url('/images/bg.webp') center center/cover no-repeat fixed;
    color: var(--light-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 10;
    position: relative;
}

header {
    padding: 40px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

.content {
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 46, 77, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

h1.animate {
    position: relative;
    display: inline-block;
}

h1.animate::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
    animation: underline 1.5s forwards 0.5s;
}

@keyframes underline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.dots {
    color: var(--accent-color);
}

.tagline {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 20px;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-button {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    margin-right: 10px;
}

.email-contact {
    margin-top: 5px;
}

.email-link {
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.email-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.email-link i {
    margin-right: 8px;
    color: var(--accent-color);
}

footer {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
    margin-bottom: 60px; /* Adjusted space for the larger waves */
}

/* Wave Animation */
.wave-animation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90px; /* Slightly increased height */
    overflow: hidden;
    z-index: 5;
    pointer-events: none; /* So it doesn't interfere with clicking */
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    animation: wave 18s linear infinite;
}

.wave2 {
    opacity: 0.6;
    animation-delay: 0s;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230099cc" fill-opacity="0.5" d="M0,160L48,165.3C96,171,192,181,288,181.3C384,181,480,171,576,165.3C672,160,768,160,864,170.7C960,181,1056,203,1152,202.7C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

.wave3 {
    opacity: 0.3;
    animation-delay: -8s;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.3" d="M0,160L48,149.3C96,139,192,117,288,112C384,107,480,117,576,138.7C672,160,768,192,864,197.3C960,203,1056,181,1152,165.3C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Background effect - using a subtle underwater texture with the gradient */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1511858240726-f59c5c2692be?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px;
        margin: 0 15px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .logo img {
        max-width: 220px;
    }

    header {
        padding: 30px 0 20px;
    }

    .email-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        background: linear-gradient(180deg, #d6e9f8 0%, #81bae8 20%, #3d85c6 50%, var(--primary-color) 100%);
    }

    .content {
        padding: 20px;
        margin: 0 10px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    header {
        padding: 20px 0 15px;
    }

    .email-link {
        font-size: 0.9rem;
    }
} 