/* ============================================
   IRON PUMP GYM - COMING SOON PAGE
   Premium Gym Landing Page Styles
   Color Scheme: Black & Red
   ============================================ */

/* CSS Variables for Easy Customization */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-red: #ff1a1a;
    --color-red-dark: #cc0000;
    --color-red-light: #ff4d4d;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-gray-dark: #333333;
    
    /* Glow Effects */
    --glow-red: 0 0 20px rgba(255, 26, 26, 0.5),
                0 0 40px rgba(255, 26, 26, 0.3),
                0 0 60px rgba(255, 26, 26, 0.1);
    --glow-red-strong: 0 0 30px rgba(255, 26, 26, 0.8),
                      0 0 60px rgba(255, 26, 26, 0.5),
                      0 0 90px rgba(255, 26, 26, 0.3);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Oswald', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: auto; /* Disabled smooth scrolling as requested */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */

/* Animated Grid Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 26, 26, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 26, 26, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Red Glow Effect */
.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* ============================================
   MAIN CONTAINER
   ============================================ */

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ============================================
   HEADER & LOGO SECTION
   ============================================ */

.header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    animation: fadeInDown 1s ease-out;
}

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

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(var(--glow-red));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 15px rgba(255, 26, 26, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(255, 26, 26, 0.8));
        transform: scale(1.02);
    }
}

.logo svg {
    width: 100%;
    height: 100%;
}

.logo-ring {
    animation: ringRotate 20s linear infinite;
    transform-origin: center;
}

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

.brand-name {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.15em;
    color: var(--color-white);
    text-shadow: var(--glow-red);
}

.brand-name .accent {
    color: var(--color-red);
}

.logo-underline {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-red), transparent);
    margin-top: var(--spacing-xs);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { 
        opacity: 0.5;
        box-shadow: 0 0 10px var(--color-red);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 20px var(--color-red), 0 0 40px var(--color-red);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-title {
    font-family: var(--font-display);
    margin-bottom: var(--spacing-md);
}

.title-line {
    display: block;
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}
.title-line1 {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: 0.1em;
    color: var(--color-red);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.title-line.highlight {
    font-size: 6rem;
    color: var(--color-red);
    text-shadow: 
        0 0 20px rgba(255, 26, 26, 0.8),
        0 0 40px rgba(255, 26, 26, 0.5),
        0 0 60px rgba(255, 26, 26, 0.3);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(255, 26, 26, 0.8),
            0 0 40px rgba(255, 26, 26, 0.5),
            0 0 60px rgba(255, 26, 26, 0.3);
    }
    50% { 
        text-shadow: 
            0 0 30px rgba(255, 26, 26, 1),
            0 0 60px rgba(255, 26, 26, 0.7),
            0 0 90px rgba(255, 26, 26, 0.5);
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   COUNTDOWN TIMER SECTION
   ============================================ */

.countdown-section {
    margin-bottom: var(--spacing-xl);
    animation: fadeIn 1s ease-out 0.6s both;
}

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

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    text-shadow: var(--glow-red);
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.countdown-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-red), transparent);
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: var(--spacing-xs);
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-red);
    text-shadow: var(--glow-red);
    animation: separatorPulse 1s ease-in-out infinite;
    align-self: flex-start;
    padding-top: 0.5rem;
}

@keyframes separatorPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   INFO SECTION
   ============================================ */

.info-section {
    margin-bottom: var(--spacing-xl);
    animation: fadeIn 1s ease-out 0.9s both;
}

.info-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 26, 26, 0.05);
    border: 1px solid rgba(255, 26, 26, 0.2);
    border-radius: 8px;
    transition: all var(--transition-normal);
    width: 100%;
    max-width: 500px;
}

.info-item:hover {
    background: rgba(255, 26, 26, 0.1);
    border-color: var(--color-red);
    box-shadow: var(--glow-red);
    transform: translateX(5px);
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 500;
}

.info-value.link {
    color: var(--color-red);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-value.link:hover {
    color: var(--color-red-light);
    text-shadow: var(--glow-red);
}

/* ============================================
   CALL TO ACTION SECTION
   ============================================ */

.cta-section {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 1s ease-out 1.2s both;
}

.cta-button {
    position: relative;
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    background: transparent;
    border: 2px solid var(--color-red);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.3), transparent);
    transition: left var(--transition-slow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--color-red);
    box-shadow: var(--glow-red-strong);
    transform: translateY(-2px);
}

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

.cta-button.secondary {
    border-color: var(--color-gray-dark);
}

.cta-button.secondary:hover {
    border-color: var(--color-red);
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* ============================================
   SOCIAL LINKS SECTION
   ============================================ */

.social-section {
    margin-bottom: var(--spacing-lg);
    animation: fadeIn 1s ease-out 1.5s both;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 26, 26, 0.1);
    border: 1px solid rgba(255, 26, 26, 0.3);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    box-shadow: var(--glow-red);
    transform: translateY(-3px) scale(1.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    text-align: center;
    animation: fadeIn 1s ease-out 1.8s both;
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-gray);
    letter-spacing: 0.05em;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

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

.modal-content {
    position: relative;
    background: var(--color-bg-secondary);
    border: 2px solid var(--color-red);
    border-radius: 8px;
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--glow-red-strong);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--color-gray);
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-red);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: var(--spacing-sm);
    text-shadow: var(--glow-red);
}

.modal-text {
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
}

.modal-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.modal-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: rgba(255, 26, 26, 0.1);
    border: 1px solid rgba(255, 26, 26, 0.3);
    border-radius: 4px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.modal-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-red);
}

.modal-link:hover {
    background: rgba(255, 26, 26, 0.2);
    border-color: var(--color-red);
    box-shadow: var(--glow-red);
}

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

/* Tablet Styles */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    .container {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 3.5rem;
    }
    
    .title-line.highlight {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-number {
        font-size: 3.5rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-separator {
        font-size: 3rem;
        padding-top: 0.3rem;
    }
    
    .countdown-label {
        font-size: 0.875rem;
    }
    
    .cta-button {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
    
    .info-item {
        padding: var(--spacing-sm);
    }
    
    .info-value {
        font-size: 0.9rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-line.highlight {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .countdown-container {
        gap: var(--spacing-xs);
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-separator {
        font-size: 2rem;
        padding-top: 0.2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .modal-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .modal-title {
        font-size: 2rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .title-line {
        font-size: 6rem;
    }
    
    .title-line.highlight {
        font-size: 7rem;
    }
    
    .countdown-number {
        font-size: 6rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .bg-grid,
    .bg-glow {
        animation: none;
    }
}

/* Focus Styles */
.cta-button:focus,
.social-link:focus,
.modal-link:focus,
.info-value.link:focus {
    outline: 2px solid var(--color-red);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --color-red: #ff0000;
        --color-gray: #aaaaaa;
    }
    
    .countdown-number {
        -webkit-text-fill-color: var(--color-white);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .bg-grid,
    .bg-glow,
    .social-section,
    .cta-section,
    .modal {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .countdown-number {
        color: black;
        -webkit-text-fill-color: black;
    }
}
