/*
 * The Calm Blue Sea - Official Website
 * Main Stylesheet - Redesigned
 */

/* Base Styles and Variables */
:root {
    --dark-bg: #37474f;
    --light-bg: #607d8b;
    --text-color: #f5f5dc;
    --accent-color: #2c3e50;
    --highlight-color: #8ca9c0;
    --transition-speed: 0.3s;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, var(--light-bg), var(--dark-bg));
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

/* Main Content Styles */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
}

.band-logo {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}

.responsive-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Social Links Styles */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 2.5rem;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(74, 109, 140, 0.4));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    color: var(--highlight-color);
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(74, 109, 140, 0.6));
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Animation Styles */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 0.5s forwards;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .social-links {
        gap: 1rem;
    }
}

/* Desktop Layout Adjustments */
@media (min-width: 769px) {
    .band-logo {
        max-height: 70vh; /* Limit height to 70% of viewport height */
    }
    
    .responsive-img {
        max-height: 70vh;
        width: auto;
        margin: 0 auto;
    }
    
    main {
        gap: 2rem; /* Reduce gap between logo and social links */
    }
    
    .social-links {
        margin-top: 0; /* Remove additional top margin */
    }
}