/* ===== FONT FACE - GalactiCondensed ===== */
@font-face {
    font-family: 'GalactiCondensed';
    src: url('fonts/GalactiCondensed-Regular-FFC-V.1/GalactiCondensed-Regular-FFC-WEB/galacticondensed-regular-ffc-web.woff2') format('woff2'),
         url('fonts/GalactiCondensed-Regular-FFC-V.1/GalactiCondensed-Regular-FFC-WEB/galacticondensed-regular-ffc-web.woff') format('woff'),
         url('fonts/GalactiCondensed-Regular-FFC-V.1/GalactiCondensed-Regular-FFC.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'GalactiCondensed', 'Arial', sans-serif;
    background: #000;
    color: #fff;
    position: relative;
}

/* ===== MAIN CONTAINER ===== */
.main-container {
    width: 100%;
    height: 100vh;
    background-image: url('freepik_create_a_realistic_wall_logo_mockup_featuring_the_29938.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.main-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.05), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05), transparent 50%);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

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

/* ===== TOP SECTION ===== */
.top-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 60px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.text-frame {
    text-align: center;
    max-width: 90%;
    position: relative;
}

.text-frame .main-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 400;
    letter-spacing: 4px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(255, 255, 255, 0.1);
    line-height: 1.2;
}

.text-frame .subtitle {
    margin-bottom: 0;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.15);
}

/* ===== GLASSES PARTICLES ANIMATION ===== */
.glasses-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.glass-particle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    color: rgba(255, 255, 255, 0.6);
    animation: floatGlasses 15s infinite ease-in-out;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes floatGlasses {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* ===== CONTENT WRAPPER ===== */
.content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

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

/* ===== LOGO SECTION ===== */
.logo-section {
    margin-bottom: 40px;
}

.logo-glow {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.3),
        0 0 120px rgba(255, 255, 255, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ===== MAIN TITLE ===== */
.main-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    margin-top: -80px;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.3),
        0 0 90px rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

.title-line {
    display: block;
    animation: titleGlow 3s ease-in-out infinite;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.5),
            0 0 60px rgba(255, 255, 255, 0.3),
            0 0 90px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(255, 255, 255, 0.7),
            0 0 80px rgba(255, 255, 255, 0.5),
            0 0 120px rgba(255, 255, 255, 0.3);
    }
}

/* ===== SUBTITLE ===== */
.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* ===== DIVIDER ===== */
.divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    margin: 40px auto;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%);
    animation: dotPulse 2s ease-in-out infinite;
}

.divider::before {
    left: -20px;
}

.divider::after {
    right: -20px;
    animation-delay: 1s;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.3);
    }
}

/* ===== COMING SOON TEXT ===== */
.coming-soon-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 8px;
    margin-bottom: 0;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 300;
    animation: fadeInOut 4s ease-in-out infinite;
    position: relative;
}

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

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 
        0 10px 40px rgba(37, 211, 102, 0.5),
        0 0 60px rgba(37, 211, 102, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    margin-top: 40px;
    animation: buttonFloat 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

@keyframes buttonFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

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

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(37, 211, 102, 0.7),
        0 0 80px rgba(37, 211, 102, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-btn i {
    font-size: 1.8em;
    animation: whatsappWiggle 2s ease-in-out infinite;
}

@keyframes whatsappWiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

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

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===== INFO TEXT ===== */
.info-text {
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    z-index: 15;
}

.info-text p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.portfolio-note {
    font-size: clamp(0.85rem, 1.8vw, 1rem) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 400 !important;
    margin-top: 20px !important;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.portfolio-note .star {
    color: #FFD700;
    font-size: 1.2em;
    margin-left: 8px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-section {
        padding: 40px 15px 30px;
    }
    
    .text-frame .main-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    .text-frame .subtitle {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        letter-spacing: 0.5px;
    }
    
    .content-wrapper {
        padding: 30px 20px;
        margin-top: 180px;
    }
    
    .logo-glow {
        width: 80px;
        height: 80px;
    }
    
    .main-title {
        margin-bottom: 20px;
    }
    
    .subtitle {
        margin-bottom: 30px;
        font-size: 1rem;
    }
    
    .divider {
        width: 150px;
        margin: 30px auto;
    }
    
    .coming-soon-text {
        margin-bottom: 40px;
        letter-spacing: 4px;
    }
    
    .whatsapp-btn {
        padding: 18px 40px;
        font-size: 1.1rem;
        margin-top: 30px;
    }
    
    .info-text {
        margin-top: 0;
        bottom: 20px;
        padding: 0 20px;
    }
    
    .portfolio-note {
        font-size: 0.8rem !important;
        padding: 12px 15px !important;
        margin-top: 15px !important;
    }
    
    .coming-soon-text {
        margin-bottom: 140px;
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .top-section {
        padding: 30px 10px 20px;
    }
    
    .text-frame .main-title {
        font-size: clamp(2rem, 7vw, 3rem);
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .text-frame .subtitle {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
        letter-spacing: 0.5px;
    }
    
    .content-wrapper {
        padding: 20px 15px;
        margin-top: 160px;
    }
    
    .logo-glow {
        width: 60px;
        height: 60px;
    }
    
    .main-title {
        margin-bottom: 15px;
    }
    
    .subtitle {
        margin-bottom: 25px;
        font-size: 0.9rem;
    }
    
    .divider {
        width: 120px;
        margin: 25px auto;
    }
    
    .coming-soon-text {
        margin-bottom: 30px;
        letter-spacing: 3px;
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        padding: 15px 35px;
        font-size: 1rem;
        gap: 12px;
        margin-top: 25px;
    }
    
    .whatsapp-btn i {
        font-size: 1.5em;
    }
    
    .info-text {
        margin-top: 0;
        bottom: 15px;
        padding: 0 15px;
    }
    
    .info-text p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .portfolio-note {
        font-size: 0.75rem !important;
        padding: 10px 12px !important;
        margin-top: 12px !important;
    }
    
    .coming-soon-text {
        margin-bottom: 120px;
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        letter-spacing: 3px;
    }
    
    .coming-soon-text {
        margin-bottom: 120px;
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        letter-spacing: 3px;
    }
}

/* ===== LOADING ANIMATION ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 1s ease-in;
}

