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

/* Custom Font - PolySans Neutral */
@font-face {
    font-family: 'PolySans Neutral';
    src: url('assets/fonts/PolySans-Neutral.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
    background-color: #043323;
    background-image: url('background image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Logo Container */
.logo-container {
    position: fixed;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-color: #043323;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.logo-icon {
    width: 32px;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px 100px 20px;
}

/* Content Container */
.content {
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    justify-content: center;
}

/* Tagline */
.tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

/* Title */
.title {
    font-family: 'PolySans Neutral', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 142px;
    line-height: 0.89;
    letter-spacing: -4.27px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* Subtitle */
.subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #FFFFFF;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop / Monitor (1920px+) */
@media (min-width: 1920px) {
    .logo-container {
        width: 60px;
        height: 60px;
        top: 80px;
    }
    
    .logo-icon {
        width: 40px;
    }
    
    .title {
        font-size: 180px;
        letter-spacing: -5.4px;
    }
    
    .subtitle {
        font-size: 20px;
        bottom: 120px;
    }
}

/* Extra Large Monitor (2560px+) */
@media (min-width: 2560px) {
    .logo-container {
        width: 72px;
        height: 72px;
        top: 100px;
    }
    
    .logo-icon {
        width: 48px;
    }
    
    .title {
        font-size: 220px;
        letter-spacing: -6.6px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .subtitle {
        font-size: 24px;
        bottom: 140px;
    }
}

/* Tablet Landscape (iPad Pro 11" Landscape - 1194x834) */
@media (max-width: 1194px) and (min-width: 835px) {
    .logo-container {
        width: 45px;
        height: 45px;
        top: 60px;
    }
    
    .logo-icon {
        width: 30px;
    }
    
    .title {
        font-size: 120px;
        letter-spacing: -3.6px;
    }
    
    .subtitle {
        bottom: 80px;
        font-size: 15px;
    }
}

/* Tablet Portrait (iPad Pro 11" Portrait - 834x1194) */
@media (max-width: 834px) and (min-width: 441px) {
    body {
        background-image: url('background image.png');
    }
    
    .logo-container {
        width: 42px;
        height: 42px;
        top: 60px;
    }
    
    .logo-icon {
        width: 28px;
    }
    
    .title {
        font-size: 110px;
        letter-spacing: -3.3px;
    }
    
    .subtitle {
        bottom: 120px;
        font-size: 15px;
    }
}

/* Mobile (iPhone 16 Pro Max - 440x956 and iPhone 16 - 393x852) */
@media (max-width: 440px) {
    body {
        background-image: url('background image.png');
    }
    
    .logo-container {
        top: 50px;
        width: 40px;
        height: 40px;
    }
    
    .logo-icon {
        width: 26px;
    }
    
    .title {
        font-size: 96px;
        letter-spacing: -2.88px;
    }
    
    .subtitle {
        font-size: 14px;
        bottom: 100px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .logo-container {
        width: 38px;
        height: 38px;
        top: 45px;
    }
    
    .logo-icon {
        width: 25px;
    }
    
    .title {
        font-size: 72px;
        letter-spacing: -2.16px;
    }
    
    .subtitle {
        font-size: 12px;
        bottom: 80px;
    }
}

