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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-image: url('img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.animated-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
    z-index: 2;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8B1A1A 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1A3A8B 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 26, 26, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 58, 139, 0.4) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B1A1A, #1A3A8B);
    opacity: 0.1;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 40%;
    left: 80%;
    animation-delay: -2s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 20%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 60%;
    animation-delay: -6s;
}

.particle:nth-child(5) {
    width: 14px;
    height: 14px;
    top: 30%;
    left: 50%;
    animation-delay: -8s;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 90%;
    animation-delay: -10s;
}

.particle:nth-child(7) {
    width: 9px;
    height: 9px;
    top: 10%;
    left: 70%;
    animation-delay: -12s;
}

.particle:nth-child(8) {
    width: 11px;
    height: 11px;
    top: 50%;
    left: 5%;
    animation-delay: -14s;
}

.particle:nth-child(9) {
    width: 5px;
    height: 5px;
    top: 90%;
    left: 30%;
    animation-delay: -16s;
}

.particle:nth-child(10) {
    width: 13px;
    height: 13px;
    top: 15%;
    left: 40%;
    animation-delay: -18s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.15;
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg);
        opacity: 0.15;
    }
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Logo Styles */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo-text-wrapper {
    display: inline-block;
    position: relative;
}

.logo-text {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    display: inline-block;
}

.mayra {
    color: #8B1A1A;
    /* Dark red color */
}

.infocom {
    color: #1A3A8B;
    /* Dark blue color */
}

.logo-underline {
    display: flex;
    width: 100%;
    height: 4px;
    margin-top: 4px;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
}

.underline-red {
    background-color: #8B1A1A;
    height: 100%;
    flex-shrink: 0;
}

.underline-gradient {
    background: linear-gradient(to right, 
        #8B1A1A 0%, 
        #7B1A2A 25%, 
        #5B2A4A 50%, 
        #3A3A6B 75%, 
        #1A3A8B 100%);
    height: 100%;
    flex-shrink: 0;
}

.underline-blue {
    background-color: #1A3A8B;
    height: 100%;
    flex-shrink: 0;
}

/* Responsive underline heights */
@media (max-width: 767px) {
    .logo-underline {
        height: 3px;
    }
}

@media (max-width: 480px) {
    .logo-underline {
        height: 2.5px;
    }
}

.tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.01em;
    font-family: 'Inter', sans-serif;
}

/* Content Styles */
.content {
    max-width: 600px;
    margin: 0 auto;
}

.construction-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9), 
                 0 1px 3px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6);
}

.construction-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9),
                 0 0 15px rgba(255, 255, 255, 0.7);
}

/* Footer Styles */
.footer {
    padding-top: 20px;
}

.design-credit {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: #2a2a2a;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9),
                 0 0 10px rgba(255, 255, 255, 0.6);
}

.design-credit a {
    color: #1A3A8B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.design-credit a:hover {
    color: #8B1A1A;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-text {
        letter-spacing: -0.01em;
    }
}

/* Animation for subtle entrance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    animation: fadeIn 0.8s ease-out;
}

.content {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.footer {
    animation: fadeIn 0.8s ease-out 0.4s both;
}
