@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Language Selector */
.language-selector {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 100;
}

.active-lang {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    object-fit: cover;
}

.active-lang:hover {
    transform: scale(1.05);
}

.language-dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    gap: 8px;
}

.language-dropdown.active {
    display: flex;
}

.language-dropdown img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
    object-fit: cover;
}

.language-dropdown img:hover {
    transform: scale(1.1);
}

/* Logo */
.logo {
    text-align: center;
    margin: 80px 0 50px;
    padding: 0 20px;
}

.logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
}

/* Menu Buttons */
.menu-buttons {
display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 0 50px;
    padding: 0 30px;
    justify-content: center;
    align-items: center;
}

.menu-btn {
    background-color: #2d5442;
    color: white;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    border: 0px;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(45, 84, 66, 0.25);
    width: 280px;
}

.menu-btn:hover {
    background-color: #234033;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 84, 66, 0.35);
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin: 0 0 35px;
    padding: 0 30px;
}

.welcome-title {
    font-family: 'Great Vibes', cursive;
    font-size: 52px;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.welcome-text {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    max-width: 450px;
    margin: 0 auto;
    font-weight: 400;
}

/* Beach Image */
.beach-image {
    margin: 0 0 40px;
    padding: 0 20px;
}

.beach-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    display: block;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 0 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
}

.social-icon svg {
    width: 35px;
    height: 35px;
}

.social-icon:hover {
    color: #2d5442;
    transform: scale(1.1);
}

/* Location Info */
.location-info {
    text-align: center;
    margin: 20px 0 30px;
}

.location-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

.location-info p {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* Direction Button */
.direction-btn {
    display: block;
    background-color: #2d5442;
    color: white;
    text-decoration: none;
    padding: 14px 45px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin: 0 auto 50px;
    width: fit-content;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(45, 84, 66, 0.25);
}

.direction-btn:hover {
    background-color: #234033;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 84, 66, 0.35);
}

/* Footer */
.footer {
    text-align: center;
    margin: 0 0 30px;
    padding: 20px;
}

.footer p {
    font-size: 10px;
    color: #999;
    font-weight: 400;
}

.footer strong {
    color: #666;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        margin: 60px 0 40px;
    }
    
    .logo img {
                margin: 45px 0;
        max-width: 145px;
    }
    
    .welcome-title {
        font-size: 44px;
    }
    
    .welcome-text {
        font-size: 12px;
    }
    
    .menu-buttons {
        padding: 0 20px;
    }
    
    .menu-btn {
        font-size: 13px;
        padding: 15px 30px;
    }
    
    .active-lang {
        width: 45px;
        height: 45px;
    }
    
    .language-selector {
        top: 20px;
        left: 20px;
    }
}
