/* ============================================
   UNDER CONSTRUCTION LANDING PAGE - STYLES
   The Brand Things
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Sora', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   2. BACKGROUND SETUP
   ============================================ */

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* REPLACE: Change this URL to your preferred background image */
    /* Make sure the image is high quality and professionally themed */
    /* Updated to gold and dark theme */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%231a1a1a;stop-opacity:1" /><stop offset="50%25" style="stop-color:%232d2415;stop-opacity:1" /><stop offset="100%25" style="stop-color:%23000000;stop-opacity:1" /></linearGradient><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23FFD700" opacity="0.08"/></pattern></defs><rect width="1200" height="800" fill="url(%23grad1)"/><rect width="1200" height="800" fill="url(%23dots)"/><circle cx="100" cy="100" r="200" fill="rgba(255,215,0,0.03)"/><circle cx="1100" cy="700" r="300" fill="rgba(255,215,0,0.03)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: gradientShift 15s ease infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Premium dark overlay for text readability */
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(2px);
}

/* ============================================
   3. MAIN CONTAINER & LAYOUT
   ============================================ */

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   4. LOGO BADGE
   ============================================ */

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    
    font-size: 40px;
    color: #FFD700;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ============================================
   5. TYPOGRAPHY
   ============================================ */

/* Company Name */
.company-name {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideIn 0.8s ease-out 0.1s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Construction Title */
.construction-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.95;
    animation: slideIn 0.8s ease-out 0.2s both;
}

/* Subtext */
.subtext {
    font-size: 1rem;
    font-weight: 300;
    color: #d0d0d0;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: slideIn 0.8s ease-out 0.3s both;
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 40px auto;
    animation: slideIn 0.8s ease-out 0.4s both;
}

/* Details Text */
.details-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #b0b0b0;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideIn 0.8s ease-out 0.5s both;
}

/* ============================================
   6. SOCIAL ICONS & LINKS
   ============================================ */

.social-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: slideIn 0.8s ease-out 0.6s both;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    
    color: #ffffff;
    font-size: 28px;
    
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    text-decoration: none;
}

/* Instagram Link Hover */
.instagram-link:hover {
    background: linear-gradient(135deg, #FD5949 0%, #D6249F 25%, #285AEB 100%);
    border-color: #FD5949;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 35px rgba(253, 89, 73, 0.6);
}

/* WhatsApp Link Hover */
.whatsapp-link:hover {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border-color: #25d366;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Social Label (Username/Phone) */
.social-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.social-item:hover .social-label {
    color: #FFD700;
}

/* ============================================
   7. FOOTER
   ============================================ */

.footer-text {
    font-size: 0.8rem;
    color: #808080;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text p {
    animation: slideIn 0.8s ease-out 0.7s both;
}

/* ============================================
   8. RESPONSIVE DESIGN
   ============================================ */

/* Tablet & Medium Screens */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .construction-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .subtext {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .logo-badge {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .social-container {
        gap: 40px;
    }

    .social-link {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .social-label {
        font-size: 0.8rem;
    }
}

/* Mobile Screens */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .company-name {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .construction-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .subtext {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .details-text {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .logo-badge {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .divider {
        width: 50px;
        margin: 30px auto;
    }

    .social-container {
        gap: 30px;
    }

    .social-link {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .social-label {
        font-size: 0.75rem;
    }

    .footer-text {
        font-size: 0.75rem;
        margin-top: 30px;
        padding-top: 20px;
    }
}

/* Very Small Screens (Extra Mobile) */
@media (max-width: 360px) {
    .company-name {
        font-size: 1.7rem;
    }

    .construction-title {
        font-size: 1rem;
    }

    .social-container {
        gap: 20px;
    }
}

/* ============================================
   9. ACCESSIBILITY & FOCUS STATES
   ============================================ */

.social-link:focus-visible {
    outline: 2px solid #FFD700;
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .background-container {
        background-color: #1a1a1a;
    }
    
    .social-link:hover {
        transform: none;
    }
}
