/* ================================================
   RESET & BASE STYLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #005BAA;
    --secondary-blue: #00A8E8;
    --text-dark: #333;
    --text-light: #fff;
    --shadow: rgba(0, 0, 0, 0.1);
    --overlay-start: rgba(0, 91, 170, 0.88);
    --overlay-end: rgba(0, 168, 232, 0.92);
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    flex-direction: column;
}

/* ================================================
   HERO BANNER SECTION (55vh)
   ================================================ */
.hero-banner {
    position: relative;
    height: 55vh;
    width: 100%;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--overlay-start), var(--overlay-end));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1rem;
    animation: fadeInUp 1.2s ease-out;
}

.logo {
    width: 140px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

.slogan {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.coming-soon {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0.5rem 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 8px;
    animation: pulse 2s ease-in-out infinite, fadeIn 1.5s ease-out 0.5s both;
}

.hero-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: fadeIn 1.5s ease-out 0.7s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--text-light);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ================================================
   WAVE DIVIDER
   ================================================ */
.wave-divider {
    position: relative;
    width: 100%;
    height: 60px;
    background: var(--secondary-blue);
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: var(--text-light);
    animation: wave-move 3s ease-in-out infinite;
}

/* ================================================
   INFO SECTION (45vh - 60px wave)
   ================================================ */
.info-section {
    position: relative;
    height: calc(45vh - 60px);
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate-slow 20s linear infinite;
    z-index: 1;
}

.info-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.info-card {
    flex: 1;
    min-width: 180px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.info-card:nth-child(1) { animation-delay: 0.2s; }
.info-card:nth-child(2) { animation-delay: 0.4s; }
.info-card:nth-child(3) { animation-delay: 0.6s; }

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.info-card i {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.info-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.info-card a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-card a:hover {
    transform: scale(1.05);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Instagram card special styling */
.instagram-card a {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 0.3rem;
    font-weight: 600;
}

.instagram-card a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

/* ================================================
   CONFETTI CANVAS (Easter Egg)
   ================================================ */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wave-move {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25px) translateY(-5px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .hero-banner {
        height: 50vh;
    }
    
    .info-section {
        height: calc(50vh - 60px);
    }
    
    .logo {
        width: 100px;
        margin-bottom: 0.3rem;
    }
    
    .slogan {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .coming-soon {
        font-size: 1.6rem;
        letter-spacing: 4px;
        margin: 0.3rem 0;
    }
    
    .hero-description {
        font-size: 0.7rem;
        margin-top: 0.3rem;
        padding: 0 1rem;
    }
    
    .scroll-indicator {
        bottom: 0.8rem;
    }
    
    .scroll-indicator i {
        font-size: 1.3rem;
    }
    
    .info-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-card {
        min-width: 100%;
        padding: 0.8rem;
    }
    
    .info-card i {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .info-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .info-card p {
        font-size: 0.7rem;
    }
}

/* Mobile Medium (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-banner {
        height: 52vh;
    }
    
    .info-section {
        height: calc(48vh - 60px);
    }
    
    .logo {
        width: 120px;
    }
    
    .slogan {
        font-size: 0.85rem;
    }
    
    .coming-soon {
        font-size: 2rem;
        letter-spacing: 5px;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .info-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .info-card {
        min-width: 100%;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-banner {
        height: 54vh;
    }
    
    .info-section {
        height: calc(46vh - 60px);
    }
    
    .logo {
        width: 160px;
    }
    
    .slogan {
        font-size: 1.1rem;
    }
    
    .coming-soon {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .info-container {
        gap: 1rem;
    }
    
    .info-card {
        min-width: 200px;
    }
}

/* Desktop Large (1440px+) */
@media (min-width: 1440px) {
    .logo {
        width: 180px;
    }
    
    .slogan {
        font-size: 1.2rem;
    }
    
    .coming-soon {
        font-size: 3.5rem;
        letter-spacing: 10px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card i {
        font-size: 2.5rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .info-card p {
        font-size: 0.95rem;
    }
}

/* Landscape Mode (all devices) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-banner {
        height: 60vh;
    }
    
    .info-section {
        height: calc(40vh - 60px);
    }
    
    .logo {
        width: 80px;
        margin-bottom: 0.2rem;
    }
    
    .slogan {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .coming-soon {
        font-size: 1.4rem;
        letter-spacing: 3px;
        margin: 0.2rem 0;
    }
    
    .hero-description {
        font-size: 0.65rem;
        margin-top: 0.2rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .info-container {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .info-card {
        padding: 0.5rem;
        min-width: 150px;
    }
    
    .info-card i {
        font-size: 1.2rem;
    }
    
    .info-card h3 {
        font-size: 0.75rem;
    }
    
    .info-card p {
        font-size: 0.65rem;
    }
}
