/* OTSN Landing Page Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Main Container */
.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0px;
}

/* Logo */
.logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: block;
}

/* Tagline Section */
.tagline {
    margin-bottom: 40px;
}

.tagline h1 {
    font-size: 24px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.subtext {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    height: 60px;
    background-color: #FFFFFF;
    border: 2px solid #ED1C24;
    border-radius: 0px;
    color: #ED1C24;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 12px;
}

.social-button:hover {
    background-color: #ED1C24;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}

.social-button:active {
    transform: translateY(0);
}

.social-button .icon {
    font-size: 24px;
}

.social-button .platform {
    font-size: 18px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .container {
        padding: 60px 40px;
    }

    .logo {
        width: 200px;
        height: 200px;
        margin-bottom: 40px;
    }

    .tagline {
        margin-bottom: 50px;
    }

    .tagline h1 {
        font-size: 32px;
    }

    .subtext {
        font-size: 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-button {
        max-width: 400px;
        height: 65px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .social-button {
        transition: none;
    }

    .social-button:hover {
        transform: none;
    }
}

/* Focus Styles for Keyboard Navigation */
.social-button:focus {
    outline: 3px solid #ED1C24;
    outline-offset: 4px;
}
