/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600&display=swap');

/* Color Variables */
:root {
    --deep-ocean: #0a1828;
    --ocean-blue: #1e3a5f;
    --wave-teal: #2c5f7c;
    --sea-foam: #9dc7d9;
    --shore-sand: #d4a574;
    --white-foam: #f8f9fa;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

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

/* Body */
body {
    font-family: 'Heebo', sans-serif;
    background: var(--deep-ocean);
    color: var(--white-foam);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animated Background */
.ocean-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: 
        linear-gradient(180deg, 
            var(--deep-ocean) 0%, 
            var(--ocean-blue) 50%, 
            var(--wave-teal) 100%
        );
}

/* Language Switch Button */
.lang-switch {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 0.8rem 1.5rem;
    background: rgba(10, 24, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--shore-sand);
    border-radius: 25px;
    color: var(--shore-sand);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    z-index: 100;
}

.lang-switch:hover {
    background: var(--shore-sand);
    color: var(--deep-ocean);
    transform: scale(1.1);
}

.ocean-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(156, 199, 217, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    animation: shimmer 8s ease-in-out infinite alternate;
}

.ocean-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    opacity: 0.3;
}

/* Main Container */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 2rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeInScale 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.main-photo {
    max-width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 20px rgba(156, 199, 217, 0.3));
    border: 3px solid var(--shore-sand);
}

.main-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(156, 199, 217, 0.3));
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 4rem;
}

.main-header {
    font-family: 'Heebo', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--sea-foam);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    animation: fadeIn 1s ease-out 0.3s both;
}

.intro-text {
    max-width: 600px;
    margin: 0 auto;
}

.intro-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: var(--white-foam);
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Buttons Section */
.buttons-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    width: 100%;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.9s both;
}

.main-btn {
    padding: 1.5rem 3rem;
    background: transparent;
    border: 2px solid var(--shore-sand);
    color: var(--shore-sand);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shore-sand);
    transition: left 0.3s ease;
    z-index: -1;
}

.main-btn:hover::before {
    left: 0;
}

.main-btn:hover {
    color: var(--deep-ocean);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

/* Footer */
.footer {
    padding: 2rem 1rem;
    text-align: center;
    background: rgba(10, 24, 40, 0.95);
    border-top: 1px solid rgba(156, 199, 217, 0.2);
    font-size: 0.9rem;
    color: var(--sea-foam);
    width: 100%;
}

.footer p {
    margin: 0.3rem 0;
}

.footer-email {
    color: var(--shore-sand);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: var(--sea-foam);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-container {
        padding: 2rem 1rem;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-photo {
        max-width: 150px;
        height: 150px;
    }
    
    .main-logo {
        max-width: 150px;
    }
    
    .buttons-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}
