/* BCA College Coming Soon Page - Optimized Full Version */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A2845;
    --accent: #AF4D58;
    --orange: #D68F41;
    --cream: #F4EFE9;
    --white: #FFFFFF;
    --grey: #666666;
    --gradient: linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%);
    --gradient-soft: linear-gradient(135deg, rgba(10, 40, 69, 0.05) 0%, rgba(175, 77, 88, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--primary);
    overflow-x: hidden;
    position: relative;
}

/* Cursor Trail Effect - Desktop only */
.bca-cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(175, 77, 88, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all 0.1s ease;
    display: none;
}

@media (min-width: 1024px) {
    .bca-cursor-trail {
        display: block;
    }
}

/* Noise Texture */
.bca-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.02;
    z-index: 1;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIxMCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMSIvPjwvc3ZnPg==');
}

/* Hero Section */
.bca-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
}

/* Animated Background Shapes */
.bca-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bca-bg-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.bca-bg-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: rgba(214, 143, 65, 0.1);
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.bca-bg-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: rgba(175, 77, 88, 0.1);
    top: 60%;
    right: -5%;
    animation-delay: -5s;
}

.bca-bg-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    bottom: 30%;
    left: 10%;
    animation-delay: -10s;
}

.bca-bg-shape:nth-child(4) {
    width: 250px;
    height: 250px;
    background: rgba(10, 40, 69, 0.1);
    top: 10%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translate(50px, -30px) rotate(90deg) scale(1.1); 
    }
    50% { 
        transform: translate(-30px, -60px) rotate(180deg) scale(0.9); 
    }
    75% { 
        transform: translate(-50px, -30px) rotate(270deg) scale(1.05); 
    }
}

/* Hero Content */
.bca-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    width: 90%;
    padding: 0 20px;
    position: relative;
}

/* College Title */
.bca-college-title {
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top:5rem;
    color: var(--orange);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Main Coming Soon Text */
.bca-coming-soon {
    font-size: clamp(35px, 8.5vw, 84px);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 25px;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
    position: relative;
}

.bca-coming-soon strong {
    font-weight: 700;
    color: var(--orange);
    display: block;
}

/* Subtitle */
.bca-subtitle {
    font-size: clamp(12px, 1.8vw, 18px);
    font-weight: 200;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1.5px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* Coming Soon Badge with 3D Effect */
.bca-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.bca-coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    color: var(--white);
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 10px;
    
    /* 3D Isometric Transform */
    transform: perspective(400px) rotateX(15deg) rotateY(-8deg);
    
    /* 3D Shadow Effects */
    box-shadow: 
        0 15px 30px rgba(175, 77, 88, 0.3),
        -8px 8px 0 rgba(10, 40, 69, 0.8),
        -15px 15px 0 rgba(10, 40, 69, 0.6);
    
    /* Animations */
    animation: isometricFloat 4s ease-in-out infinite;
    
    /* Interaction */
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.bca-coming-soon-badge::before {
    content: '🎓';
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 20px;
    animation: rotate 3s linear infinite;
}

.bca-coming-soon-badge:hover {
    transform: perspective(400px) rotateX(0deg) rotateY(0deg) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(175, 77, 88, 0.4),
        0 0 0 rgba(10, 40, 69, 0.8),
        0 0 0 rgba(10, 40, 69, 0.6);
}

/* Launch Info */
.bca-launch-info {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.3s forwards;
}

.bca-launch-date {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 13px;
    letter-spacing: 1.5px;
}

.bca-launch-description {
    font-size: clamp(14px, 1.5vw, 16px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
    margin-top:30px;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes isometricFloat {
    0%, 100% { 
        transform: perspective(400px) rotateX(15deg) rotateY(-8deg) translateZ(0px); 
    }
    50% { 
        transform: perspective(400px) rotateX(15deg) rotateY(-8deg) translateZ(15px); 
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .bca-coming-soon-badge {
        font-size: 14px;
        padding: 18px 35px;
        transform: perspective(350px) rotateX(12deg) rotateY(-6deg);
        box-shadow: 
            0 12px 25px rgba(175, 77, 88, 0.3),
            -6px 6px 0 rgba(10, 40, 69, 0.8),
            -12px 12px 0 rgba(10, 40, 69, 0.6);
    }
    
    .bca-coming-soon-badge::before {
        font-size: 20px;
        top: -10px;
        right: -10px;
    }
    
    .bca-coming-soon-badge:hover {
        transform: perspective(350px) rotateX(0deg) rotateY(0deg) scale(1.03);
    }

    .bca-bg-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .bca-coming-soon-badge {
        font-size: 12px;
        padding: 16px 30px;
        transform: perspective(300px) rotateX(10deg) rotateY(-5deg);
        box-shadow: 
            0 10px 20px rgba(175, 77, 88, 0.3),
            -5px 5px 0 rgba(10, 40, 69, 0.8),
            -10px 10px 0 rgba(10, 40, 69, 0.6);
    }
    
    .bca-coming-soon-badge::before {
        font-size: 18px;
        top: -8px;
        right: -8px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--white);
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    max-width: 100%;
}