/**
 * Coming Soon Page Styles
 * Classy Chauffeurs - Luxury Transportation
 */

/* =============================================================================
   Base Styles & Reset
============================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body.coming-soon-page {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    animation: fadeIn 1s ease-in;
}

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

/* =============================================================================
   Custom Scrollbar
============================================================================= */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 6px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #1a1a1a;
}

/* Text Selection */
::selection {
    background: rgba(255, 105, 180, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 105, 180, 0.3);
    color: #ffffff;
}

/* Prevent text selection on non-editable elements (fixes Chrome I-bar cursor) */
.hero-section,
.timeline-section,
.contact-section,
.coming-soon-footer,
h1, h2, h3, h4, h5, h6,
p, span, div:not(.form-group) {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for form inputs and interactive content */
.email-input,
input,
textarea,
.contact-link,
.social-link {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* =============================================================================
   Hero Section
============================================================================= */

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    animation: slideUpFade 1.2s ease-out;
}

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

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
}

.logo-wrapper {
    /* Removed pulsing glow animation for subtler effect */
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.logo-tagline {
    color: #ff69b4;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Main Heading */
.main-heading {
    margin-bottom: 40px;
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    /* Removed scale animation for cleaner appearance */
}

.accent-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
    margin: 0 auto 25px;
    border-radius: 2px;
    animation: lineExpand 2s ease-out;
}

@keyframes lineExpand {
    from { width: 0; }
    to { width: 100px; }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 0;
    font-style: italic;
}

/* Service Preview */
.service-preview {
    margin-top: 30px;
}

.service-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* =============================================================================
   Email Capture Section
============================================================================= */

.email-capture-section {
    padding: 80px 20px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(13, 13, 13, 0.8));
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    position: relative;
}

.email-capture-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.capture-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.capture-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4af37;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.capture-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Email Form */
.email-form {
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: #666;
    font-style: italic;
}

.email-input:focus {
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
    background: linear-gradient(145deg, #333, #222);
}

.email-input:valid {
    border-color: #22c55e;
}

.notify-btn {
    background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 140px;
}

.notify-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.notify-btn:hover::before {
    left: 100%;
}

.notify-btn:active {
    transform: translateY(0);
}

.notify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #333;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.privacy-notice {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 15px;
}

/* Form Messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 20px;
    animation: messageSlide 0.3s ease-out;
}

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

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.5);
}

/* =============================================================================
   Timeline Section
============================================================================= */

.timeline-section {
    padding: 60px 20px;
    text-align: center;
}

.timeline-container {
    max-width: 500px;
    margin: 0 auto;
}

.timeline-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ff69b4;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

.timeline-description {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
}

/* =============================================================================
   Contact Section
============================================================================= */

.contact-section {
    padding: 60px 20px;
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.3), rgba(26, 26, 26, 0.3));
    border-top: 1px solid #333;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #d4af37;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #d4af37;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.contact-text {
    color: #cccccc;
}

/* Social Media */
.social-media {
    margin-top: 40px;
}

.social-heading {
    font-size: 1.2rem;
    color: #ff69b4;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #222, #111);
    border: 1px solid #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: #000000;
}

/* =============================================================================
   Footer
============================================================================= */

.coming-soon-footer {
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
    border-top: 1px solid #333;
    padding: 40px 20px;
    position: relative;
}

.coming-soon-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.copyright p,
.development-notice p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.development-notice p {
    font-style: italic;
}

/* =============================================================================
   Responsive Design
============================================================================= */

@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        padding: 40px 15px;
    }

    .site-logo {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .logo-tagline {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Email Capture */
    .email-capture-section {
        padding: 60px 15px;
    }

    .capture-heading {
        font-size: 2rem;
    }

    .form-group {
        flex-direction: column;
        gap: 15px;
    }

    .email-input,
    .notify-btn {
        width: 100%;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .notify-btn {
        padding: 18px 24px;
    }

    /* Contact Section */
    .contact-section {
        padding: 50px 15px;
    }

    .contact-heading,
    .timeline-heading {
        font-size: 1.6rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

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

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    .copyright p,
    .development-notice p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 10px;
    }

    .site-logo {
        font-size: 2rem;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .capture-heading {
        font-size: 1.6rem;
    }

    .contact-heading,
    .timeline-heading {
        font-size: 1.4rem;
    }

    .email-capture-section,
    .contact-section {
        padding: 40px 10px;
    }
}

/* =============================================================================
   Accessibility & Focus States
============================================================================= */

.notify-btn:focus,
.social-link:focus,
.contact-link:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Email input gets its own focus styling (pink theme) */
.email-input:focus {
    outline: none; /* Remove default outline, keep custom pink styling */
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .email-input {
        border-width: 3px;
    }
    
    .notify-btn {
        border: 2px solid #000;
    }
}

/* =============================================================================
   Print Styles
============================================================================= */

@media print {
    body.coming-soon-page {
        background: white !important;
        color: black !important;
    }
    
    .hero-section::before,
    .email-capture-section::before,
    .coming-soon-footer::before {
        display: none;
    }
    
    .social-links,
    .email-form {
        display: none;
    }
}