:root {
    --primary-color: #d35400; /* Burnt Orange/Saffron */
    --secondary-color: #8e44ad; /* Deep Purple for contrast/night vibe */
    --text-light: #fdfefe;
    --text-dim: #ecf0f1;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-main: "Outfit", sans-serif;
    --font-script: "Great Vibes", cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-light);
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    line-height: 1.6;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3e50; /* Fallback color */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url("images/hero_background.png");
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.4) blur(2px);
    transform: scale(1.1); /* Prevents blur edges/lines */
    background-repeat: no-repeat;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.8)
    );
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 3rem;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.brand-name {
    font-family: var(--font-script);
    font-size: 4rem;
    color: #f39c12; /* Golden Chai Color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.poem-card p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.highlight-text {
    font-weight: 600;
    color: #f1c40f; /* Highlight Gold */
    font-style: italic;
    margin: 1.5rem 0;
}

.vision-section {
    font-weight: 300;
}

.image-showcase {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.detail-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    max-height: 300px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.coming-soon-badge {
    margin: 3rem 0;
    padding: 1.5rem;
    display: inline-block;
}

.coming-soon-badge h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coming-soon-badge h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.contact-info {
    margin-top: 2rem;
}

.mail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
}

.mail-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.6);
    background: #e67e22;
}

.icon {
    margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-down {
    animation: fadeInDown 1s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.3s;
    opacity: 0; /* Ensures it's hidden before animation starts if using fill-mode forwards on parent, but here we might need specific class */
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.animate-delay-2 {
    animation-delay: 0.6s;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Responsive */
@media (max-width: 600px) {
    .brand-name {
        font-size: 3rem;
    }
    .container {
        padding: 1rem;
    }
    .glass-effect {
        padding: 1.5rem;
    }
}

/* Footer & Credits */
.site-footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    opacity: 0.8;
}

.site-footer p {
    margin-bottom: 0.3rem;
}

.credit-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: #f39c12;
    text-decoration: underline;
}
