/* style.css - Enhanced Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.7;
    background: linear-gradient(to bottom, #f8f9fa, #e0e7ff); /* Soft, serene gradient */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #c0392b; /* Nepal flag crimson */
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(1, 39, 80, 0.92); /* Deep blue */
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

nav ul li a {
    color: white;
    font-weight: 600;
    transition: color 0.4s ease;
}

nav ul li a:hover {
    color: #ff7675; /* Lighter red hover */
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slider img:first-child {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.3);
    padding: 2rem 4rem;
    border-radius: 15px;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.8rem;
    margin-top: 1rem;
}

.section {
    padding: 120px 0;
    position: relative;
}

.bg-light {
    background: rgba(255, 255, 255, 0.9);
    /* Optional cultural pattern overlay */
    background-image: url('https://swodeshi.com/wp-content/uploads/2025/07/mandala-art-in-nepal.jpg');
    background-size: cover;
    background-blend-mode: overlay;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(192, 57, 43, 0.2); /* Crimson shadow */
}

footer {
    background: #012750;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1.4rem; }
}