:root {
    --color-cream: #FDFBF7;
    --color-gold: #D4AF37;
    --color-brown: #5D4037;
    --color-dark: #1F1F1F;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-hindi: 'Rozha One', serif;
}

body {
    margin: 0;
    background-color: var(--color-cream);
    color: var(--color-dark);
    font-family: var(--font-body);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--color-brown);
}

.hindi-text {
    font-family: var(--font-hindi);
}

/* Glassmorphism Ribbon */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 100;
    box-sizing: border-box;
}

nav .logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--color-gold);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--color-brown);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/hero_vacation.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tag-line {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--color-gold);
}

.sub-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Intro Section */
.aligned-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 4rem 0;
}

.aligned-content .text-block {
    flex: 1;
}

.aligned-content .image-block {
    flex: 1;
}

.aligned-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Vision Teaser */
.vision-teaser {
    background-color: white;
    /* Light contrast */
    padding: 4rem 0;
    text-align: center;
}

.vision-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vision-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-gold);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--color-gold);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn:hover {
    background-color: var(--color-brown);
}

/* Footer */
footer {
    background-color: var(--color-brown);
    color: var(--color-cream);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-content h3 {
    color: var(--color-gold);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .aligned-content {
        flex-direction: column;
    }
}

.footer-content {
    align-items: flex-start;
    /* Align form and social links to top */
}