/**
 * RideSpotWin Landing Page Styles
 * Copyright © 2025 RJC Technology. All rights reserved.
 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Hero Container - Full Viewport Height */
.hero-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #F7F7F2 0%, #E8F4F8 100%);
    padding: 40px 20px;
    position: relative;
}

/* Content Container */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 1s ease-in;
    flex: 1;
}

/* Logo */
.logo {
    width: 200px;
    max-width: 90vw;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Name Tag Image */
.name-tag {
    width: 450px;
    max-width: 90vw;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

/* Coming Soon Headline */
.coming-soon {
    font-size: 72px;
    font-weight: bold;
    color: #4A90E2;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Platform Text */
.platform-text {
    font-size: 24px;
    color: #7F8C8D;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #7F8C8D;
    font-size: 14px;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive (768px and below) */
@media screen and (max-width: 768px) {
    .logo {
        width: 150px;
        margin-bottom: 25px;
    }

    .name-tag {
        width: 350px;
        margin-bottom: 30px;
    }

    .coming-soon {
        font-size: 48px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .platform-text {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

/* Mobile Responsive (480px and below) */
@media screen and (max-width: 480px) {
    .hero-container {
        padding: 30px 15px;
    }

    .logo {
        width: 120px;
        margin-bottom: 20px;
    }

    .name-tag {
        width: 280px;
        margin-bottom: 25px;
    }

    .coming-soon {
        font-size: 36px;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .platform-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .footer {
        font-size: 12px;
        padding: 15px;
    }
}

/* Print Styles */
@media print {
    .hero-container {
        background: white;
    }
}
