:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --text-color: #333;
    --bg-color: #fdf8f3;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-1: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-2: linear-gradient(135deg, #ffd4a3 0%, #ffab5e 100%);
}

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

body {
    font-family: 'Noto Sans', 'Noto Sans Tamil', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 171, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.lang-btn.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content-wrapper {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo-section {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 40px rgba(247, 147, 30, 0.6);
    }
}

.tagline {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--secondary-color);
    font-weight: 400;
    opacity: 0.9;
}

.guru-section {
    margin: 60px 0;
    animation: fadeIn 1.5s ease-out 0.5s backwards;
}

.guru-image-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.guru-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

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

.aura-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

.aura-ring:nth-child(1) {
    width: 220px;
    height: 220px;
    animation-delay: 0s;
}

.aura-ring:nth-child(2) {
    width: 240px;
    height: 240px;
    animation-delay: 1s;
}

.aura-ring:nth-child(3) {
    width: 260px;
    height: 260px;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

.coming-soon-section {
    animation: fadeInUp 1s ease-out 1s backwards;
}

.coming-soon {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.om-symbol {
    font-size: 3rem;
    color: var(--secondary-color);
    animation: rotate 20s linear infinite;
    display: inline-block;
    margin-top: 20px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.minimal-footer {
    text-align: center;
    padding: 20px;
    color: var(--text-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .language-switcher {
        top: 15px;
        right: 15px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .guru-image {
        width: 150px;
        height: 150px;
    }

    .aura-ring:nth-child(1) {
        width: 170px;
        height: 170px;
    }

    .aura-ring:nth-child(2) {
        width: 190px;
        height: 190px;
    }

    .aura-ring:nth-child(3) {
        width: 210px;
        height: 210px;
    }

    .coming-soon {
        letter-spacing: 2px;
    }

    .om-symbol {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 15px;
    }

    .guru-section {
        margin: 40px 0;
    }

    .guru-image {
        width: 120px;
        height: 120px;
    }

    .aura-ring:nth-child(1) {
        width: 140px;
        height: 140px;
    }

    .aura-ring:nth-child(2) {
        width: 160px;
        height: 160px;
    }

    .aura-ring:nth-child(3) {
        width: 180px;
        height: 180px;
    }
}

/* Loading animation */
body.loading .content-wrapper {
    opacity: 0;
}

body:not(.loading) .content-wrapper {
    opacity: 1;
    transition: opacity 0.5s ease;
}