/* ============================================
   PREMIUM LUXURY COMING SOON PAGE
   Roven Global - White + Gold + Beige Theme
   Apple-Style Minimal Aesthetic
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: auto !important;
    overflow-x: hidden;
    overflow-y: auto !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

* {
    max-height: none !important;
}

/* ============================================
   PREMIUM TYPOGRAPHY
   Thin, Luxury Font Look
   ============================================ */
body {
    font-family: 'Montserrat', 'Cormorant Garamond', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ============================================
   ELEGANT BACKGROUND GRADIENT
   Soft White → Beige → Champagne
   ============================================ */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    height: auto;
    background: linear-gradient(135deg, 
        #035214 0%, 
        #f5f3f0 25%, 
        #d8f1de 50%, 
        #ebe8e1 75%, 
        #035214 100%);
    z-index: 0;
}

/* ============================================
   MAIN CONTAINER
   Center-aligned, Premium Spacing
   ============================================ */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 30px;
    padding-bottom: 100px;
    position: relative;
    overflow-y: auto !important;
    overflow-x: hidden;
}

.container {
    width: 100%; /* Full responsive width */
    max-width: 600px; /* Keeps layout nice on large screens */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 20px 0px 20px;
    border: 10px solid rgb(4, 80, 19);
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    overflow: visible;
}


/* ============================================
   LOGO SECTION WITH PREMIUM GLOW
   Larger Section with Breathing Space
   ============================================ */
.logo-wrapper {
    position: relative;
    width: 60%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}


.logo-container {
    width: 80%;
    max-width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    /* Premium Soft Shadow */
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08)) 
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05))
            drop-shadow(0 2px 5px rgba(212, 175, 55, 0.1));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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


/* ============================================
   MESSAGE SECTION
   Bold Elegant Headline + Clean Paragraph
   ============================================ */
.message-container {
    width: 100%;
    max-width: 600px;
    padding: 0 30px;
}

.heading {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 400;
    font-weight: bold;
    font-size: 40px;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    /* Subtle Text Shadow */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    line-height: 1.1;
}

.subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.85;
    margin: 0 auto;
    letter-spacing: 0.02em;
    text-align: center;
}

/* ============================================
   PREMIUM ROUNDED BUTTON
   Modern, Elegant Style
   ============================================ */

.visit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    /* Premium Glassmorphism with Gold Accent */
    background: rgb(4, 77, 22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                0 4px 16px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 280px;
    min-height: 50px;
    letter-spacing: 0.5px;
}

.visit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

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

.visit-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1),
                0 6px 20px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 0 30px rgba(212, 175, 55, 0.08);
    color: #1a1a1a;
}

.visit-button:active {
    transform: translateY(-1px);
}

.button-text {
    position: relative;
    z-index: 1;
    font-size: 16px;
}

/* ============================================
   SOCIAL MEDIA ICONS
   High Contrast, Premium Visibility
   ============================================ */
   .social {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 0px;
  }
  
  .social a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: relative;
    overflow: visible;
  }
  
  .social a:focus {
    outline: none;
  }
  
  .social i {
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid transparent;
  }
  
  /* Social Icon Specific Styles */
  .social a[href*="threads"] i,
  .social .threads-icon i {
    color: #ffffff;
    border: 2px solid #000000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .social a[href*="instagram"] i {
    color: #ffffff;
    border: 2px solid #e90bcb;
    background: linear-gradient(135deg, rgba(211, 18, 195, 0.9) 0%, rgba(169, 21, 156, 0.7) 100%);
    box-shadow: 0 2px 8px rgba(211, 18, 195, 0.2);
  }
  
  .social a[href*="facebook"] i {
    color: #ffffff;
    border: 2px solid #0f119b;
    background: linear-gradient(135deg, rgba(48, 46, 139, 0.9) 0%, rgba(15, 17, 155, 0.7) 100%);
    box-shadow: 0 2px 8px rgba(48, 46, 139, 0.2);
  }
  
  .social a[href*="linkedin"] i {
    color: #ffffff;
    border: 2px solid #0077b5;
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.9) 0%, rgba(0, 95, 145, 0.7) 100%);
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
  }
  
  .social a[href*="x.com"] i {
    color: #ffffff;
    border: 2px solid #000000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .social a[href*="pinterest"] i {
    color: #ffffff;
    border: 2px solid #e60023;
    background: linear-gradient(135deg, rgba(230, 0, 35, 0.9) 0%, rgba(184, 0, 28, 0.7) 100%);
    box-shadow: 0 2px 8px rgba(230, 0, 35, 0.2);
  }
  
  /* Hover Effects */
  .social a:hover i {
    border-color: #ffffff;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 
      0 0 0 3px rgba(255, 255, 255, 0.3),
      0 0 0 6px rgba(255, 255, 255, 0.2),
      0 0 20px rgba(255, 255, 255, 0.4),
      0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .social a[href*="threads"]:hover i,
  .social .threads-icon:hover i {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
  }
  
  .social a[href*="instagram"]:hover i {
    background: linear-gradient(135deg, #e90bcb 0%, #ca15b2 100%);
  }
  
  .social a[href*="facebook"]:hover i {
    background: linear-gradient(135deg, #0f119b 0%, #0a0d7a 100%);
  }
  
  .social a[href*="linkedin"]:hover i {
    background: linear-gradient(135deg, #0077b5 0%, #005a8b 100%);
  }
  
  .social a[href*="pinterest"]:hover i {
    background: linear-gradient(135deg, #e60023 0%, #b8001c 100%);
  }
  
  
.footer {
    padding: 10px;
    font-size: 15px;
    color: #000000;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ============================================
   PREMIUM ANIMATIONS
   Smooth Fade-In Effects
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 1024px) {
    body {
        padding: 50px 25px;
        padding-bottom: 80px;
        overflow-y: auto !important;
    }

    .container {
        gap: 20px;
        padding: 20px 20px 0px 20px;
    }

    .logo-wrapper {
        max-width: 600px;
        padding: 35px 0;
    }

    .heading {
        margin-bottom: 35px;
    }

    .message-container {
        padding: 0 25px;
    }

    .social {
        gap: 10px;
        padding-top: 45px;
    }

    /* Tablet: 50×50px */
    .social a {
        width: 50px;
        height: 50px;
    }

    .social i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE TABLET
   ============================================ */
@media (max-width: 768px) {
    body {
        padding: 40px 20px;
        padding-bottom: 60px;
        overflow-y: auto !important;
    }

    .container {
        gap: 20px;
        padding: 20px 20px 0px 20px;
    }

    .logo-wrapper {
        max-width: 100%;
        padding: 30px 0;
        margin-bottom: 25px;
    }

    .logo-glow {
        filter: blur(40px);
    }

    .heading {
        font-size: clamp(2.8rem, 9vw, 4.5rem);
        margin-bottom: 30px;
    }

    .subheading {
        font-size: clamp(1.05rem, 2.5vw, 1.3rem);
        line-height: 1.8;
    }

    .message-container {
        padding: 0 20px;
    }

    .visit-button {
        padding: 18px 50px;
        font-size: clamp(1rem, 2vw, 1.25rem);
        min-width: 240px;
        min-height: 56px;
    }

    .social {
        gap: 10px;
        padding-top: 40px;
    }

    /* Mobile Tablet: 50×50px */
    .social a {
        width: 50px;
        height: 50px;
    }

    .social i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 480px) {
    body {
        padding: 30px 15px;
        padding-bottom: 50px;
        overflow-y: auto !important;
    }

    .container {
        gap: 20px;
        padding: 20px 20px 0px 20px;
    }

    .logo-wrapper {
        padding: 25px 0;
        margin-bottom: 20px;
    }

    .logo-glow {
        filter: blur(35px);
    }

    .gold-divider {
        width: 60px;
        margin: 15px 0;
    }

    .heading {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        margin-bottom: 25px;
        line-height: 1.15;
    }

    .subheading {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
        line-height: 1.75;
    }

    .message-container {
        padding: 0 15px;
    }

    .visit-button {
        padding: 16px 45px;
        font-size: 1.1rem;
        min-width: 220px;
        min-height: 52px;
    }

    .social {
        gap: 10px;
        padding-top: 35px;
    }

    /* Mobile: 45×45px */
    .social a {
        width: 45px;
        height: 45px;
    }

    .social i {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* ============================================
   ACCESSIBILITY - FOCUS STATES
   ============================================ */
.visit-button:focus,
.social a:focus {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.visit-button:focus-visible,
.social a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

/* ============================================
   HIGH ZOOM LEVEL SUPPORT (400%-500%)
   Accessibility & Forced Zoom Compatibility
   ============================================ */
@media (min-width: 1px) {
    html {
        overflow-y: auto !important;
        height: auto !important;
    }
    
    body {
        overflow-y: auto !important;
        height: auto !important;
        min-height: 100vh;
    }
    
    .container {
        overflow: visible !important;
        max-height: none !important;
    }
    
    .background-gradient {
        min-height: 100vh;
        height: auto;
    }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@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 SUPPORT
   ============================================ */
@media (prefers-contrast: high) {
    .background-gradient {
        background: #ffffff;
    }

    .heading {
        color: #000000;
    }

    .subheading {
        color: #333333;
    }

    .visit-button,
    .social a i {
        border-width: 2px;
        border-color: #ffffff;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .background-gradient {
        background: #ffffff;
    }

    .logo-container,
    .message-container,
    .button-container {
        color: #000000;
    }

    .social {
        display: none;
    }
}
