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

:root {
--primary: #ff6600;
--secondary: #ffcc00;
--accent: #cc3300;
--dark: #333333;
--light: #f8f8f8;
--text: #444444;
}

body {
font-family: 'Poppins', sans-serif;
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
background-color: var(--light);
}

h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
font-weight: 700;
color: var(--dark);
}

.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

.btn {
display: inline-block;
padding: 12px 30px;
background: var(--primary);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
font-size: 16px;
box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn:hover {
background: var(--accent);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(204, 51, 0, 0.4);
}

.btn-secondary {
background: transparent;
border: 2px solid var(--primary);
color: var(--primary);
}

.btn-secondary:hover {
background: var(--primary);
color: white;
}

section {
padding: 80px 0;
}

.section-title {
text-align: center;
margin-bottom: 60px;
position: relative;
}

.section-title h2 {
font-size: 2.8rem;
display: inline-block;
position: relative;
padding-bottom: 15px;
}

.section-title h2:after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(to right, var(--primary), var(--secondary));
}

/* Header Styles */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}

.logo {
display: flex;
align-items: center;
}

.logo img {
height: 60px;
}

.logo-text {
margin-left: 15px;
}

.logo-text h1 {
font-size: 1.8rem;
color: var(--primary);
margin-bottom: 0;
}

.logo-text span {
color: var(--secondary);
}

nav {
margin-right: 115px;
}

nav ul {
display: flex;
list-style: none;
}

nav ul li {
margin-left: 30px;
}

nav ul li a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
font-size: 1.1rem;
transition: all 0.3s;
position: relative;
}

nav ul li a:after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 3px;
background: var(--primary);
transition: width 0.3s;
}

nav ul li a:hover {
color: var(--primary);
}

nav ul li a:hover:after {
width: 100%;
}

.mobile-menu {
display: none;
font-size: 24px;
cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    /* Changed align-items and text-align based on the image and your desire for central content */
    align-items: center; /* Vertically centers the hero-content within the hero */
    justify-content: center; /* Horizontally centers the hero-content */
    text-align: center; /* Centers inline content (like text) within hero-content */
    color: white;
    position: relative; /* Keep relative if you have other absolutely positioned elements relative to hero */
    /* REMOVE margin-top: 90px;
       If you need space from the top, use padding-top on .hero or adjust hero-content margin-top.
       Having a fixed margin-top here will push the entire hero section down,
       making it not truly 100vh from the top of the viewport.
    */
    padding-top: 90px; /* Use padding-top if you want space from the top,
                        and ensure hero takes full height excluding this.
                        Or, if header is fixed, adjust hero-content margin-top.
                        Given your previous header scroll effect, header is likely fixed,
                        so the approach below using hero-content margin-top is better.
                        Let's remove this if your header is fixed. */
}

.hero-content {
    /* REMOVE max-width: 800px; margin: 0 auto; if you want the logo to be the primary width driver */
    /* Instead, make hero-content a flex container to center its own children */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Horizontally center children (logo, p, countdown) */
    /* Max width can be useful here if your hero-content text shouldn't stretch too wide */
    max-width: 900px; /* Adjust as needed */
    width: 100%; /* Take full available width of parent */
    padding: 20px;
    box-sizing: border-box; /* Include padding in width calculation */
    /* Use margin-top to account for a fixed header if your header is 90px tall */
    margin-top: 50px; /* Adjust this value to shift the entire content block up or down */
    position: relative; /* Add position relative */
    z-index: 2; /* Add z-index to appear above background */
}

/* This is the crucial part for the logo */
.hero-logo {
    /* REMOVE: position: absolute; top; left; */
    width: 80vw; /* Start with a responsive width, e.g., 70% of viewport width */
    max-width: 650px; /* Set a maximum width so it doesn't get too huge on big screens */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space between logo and the next element (paragraph) */
    z-index: 10; /* Keep z-index if it needs to stack above background elements */
}

.hero h1 {
    /* If you're using the logo as the main title, you might not need an <h1> in HTML,
       or you could hide it visually for accessibility.
       If you keep it, ensure it's below the logo in HTML. */
    font-size: 4rem; /* Consider responsive units like vw for text too */
    font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive font size */
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem; /* Consider responsive units */
    font-size: clamp(1rem, 2.5vw, 1.5rem); /* Responsive font size */
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Ensure countdown items wrap on small screens */
    position: relative; /* Add position relative */
    z-index: 2; /* Add z-index to appear above background */
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px;
    min-width: 100px;
    color: white; /* Ensure text color is white in countdown items */
    position: relative; /* Add position relative */
    z-index: 2; /* Add z-index to appear above background */
}

.countdown-number {
    font-size: 2.5rem; /* Consider responsive units */
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 1rem; /* Consider responsive units */
    font-size: clamp(0.7rem, 1.5vw, 1rem); /* Responsive font size */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-sponsor-btn {
    margin-top: 10px;
    font-size: 1.2rem;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.hero-sponsor-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Media queries for fine-tuning on smaller screens */
@media (max-width: 768px) {
    .hero-logo {
        width: 80vw; /* Make it a bit wider on smaller screens if needed */
        max-width: 400px;
    }
    /* You might want to adjust margin-top on hero-content if the header is very tall */
    /* .hero-content { margin-top: -30px; } */
}

@media (max-width: 480px) {
    .hero-logo {
        width: 90vw; /* Even wider on very small screens */
        max-width: 300px;
    }
    .countdown-item {
        min-width: 70px; /* Adjust min-width for very small screens */
        padding: 10px;
    }
    .countdown-number {
        font-size: 1.5rem;
    }
    .countdown-label {
        font-size: 0.6rem;
    }
}

/* Sechedule Section */
.schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Makes section fill full screen height */
  text-align: center;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Ratha Yatra Section */
.ratha-yatra-section {
    padding: 60px 0; /* Adjust padding as needed */
    background-color: #55506e; /* Light background to match the image */
}

.ratha-yatra-container {
    display: flex;
    max-width: 1200px; /* Adjust max-width as needed */
    margin: 0 auto;
    background-color: #ffffff; /* White background for the content box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px; /* Slightly rounded corners */
    overflow: hidden; /* Ensures image corners are rounded if desired */
}

.ratha-yatra-image {
    flex: 1; /* Takes up 1 part of the flex container */
    min-width: 400px; /* Adjust as needed to control image width */
}

.ratha-yatra-image img {
    width: 100%;
    height: 100%; /* Ensure the image fills its container */
    object-fit: cover; /* Covers the area, cropping if necessary */
    display: block;
}

.ratha-yatra-content {
    flex: 1.5; /* Takes up 1.5 parts of the flex container, giving more space to text */
    padding: 40px; /* Internal padding for the text content */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
}

.ratha-yatra-title {
    font-size: 2.5rem; /* Larger font size for the main title */
    color: #e74c3c; /* Reddish color from the image */
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.parade-timing {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 600;
}

.ratha-yatra-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.updated-route-heading {
    font-size: 1.2rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.route-list {
    list-style-type: disc; /* Bullet points */
    margin-left: 20px; /* Indent list items */
    padding-left: 0;
}

.route-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ratha-yatra-container {
        flex-direction: column; /* Stack content vertically on smaller screens */
    }

    .ratha-yatra-image,
    .ratha-yatra-content {
        flex: none; /* Remove flex sizing */
        width: 100%; /* Take full width */
    }

    .ratha-yatra-image {
        min-width: unset; /* Remove min-width on smaller screens */
    }

    .ratha-yatra-content {
        padding: 30px; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 768px) {
    .ratha-yatra-title {
        font-size: 2rem;
    }

    .ratha-yatra-content {
        padding: 20px;
    }
}
/* Schedule Section */
.schedule {
background: linear-gradient(135deg, rgba(255,204,0,0.1) 0%, rgba(255,102,0,0.1) 100%);
position: relative;
overflow: hidden;
}

.schedule::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://www.transparenttextures.com/patterns/45-degree-fabric-light.png');
opacity: 0.1;
}

.schedule-container {
position: relative;
z-index: 1;
}

.schedule-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.schedule-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.schedule-card:hover {
transform: translateY(-10px);
}

.schedule-header {
background: linear-gradient(to right, var(--primary), var(--secondary));
color: white;
padding: 20px;
text-align: center;
}

.schedule-header h3 {
font-size: 1.8rem;
margin-bottom: 5px;
color: white;
}

.schedule-header p {
font-size: 1.1rem;
opacity: 0.9;
}

.schedule-body {
padding: 20px;
}

.schedule-item {
display: flex;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.schedule-time {
min-width: 100px;
font-weight: 600;
color: var(--primary);
}

.schedule-details h4 {
font-size: 1.2rem;
margin-bottom: 5px;
}

/* Gallery Section */
/* Activities Section Styles */
.activities-section {
    padding: 60px 0;
    background-color: #8d8646; /* Light background similar to the image */
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.activity-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-card.children-activities,
.activity-card.ayurveda-health {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Specific grid positioning for cards */
.activity-card.children-activities {
    grid-column: 1;
    grid-row: 1;
}

.activity-card.ayurveda-health {
    grid-column: 2;
    grid-row: 1;
}

.activity-card.taste-of-india {
    grid-column: 3;
    grid-row: 1;
}

.activity-card.ask-a-monk {
    grid-column: 1;
    grid-row: 2;
}

.activity-card.yoga-in-park {
    grid-column: 2;
    grid-row: 2;
}

.activity-card.henna {
    grid-column: 3;
    grid-row: 2;
}

.activity-card.try-sari-turban {
    grid-column: 1;
    grid-row: 3;
}

.activity-card .activity-image {
    width: 100%;
    height: 180px; /* Fixed height for images to ensure consistency */
    overflow: hidden;
}

.activity-card .activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images cover the area without distortion */
    display: block;
}

.activity-card .activity-content {
    padding: 20px;
    flex-grow: 1; /* Allows content to expand and fill available space */
}

.activity-card h3 {
    font-size: 1.25rem; /* Title font size */
    color: #e74c3c; /* Reddish color for titles, similar to the image */
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase; /* Match the uppercase titles in the image */
}

.activity-card p {
    font-size: 0.95rem; /* Paragraph text size */
    line-height: 1.6;
    color: #555;
    margin-bottom: 0; /* No bottom margin for paragraphs inside cards */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activity-card {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media (max-width: 576px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
}

/* Location Section */
.location {
background: var(--dark);
color: white;
}

.location .section-title h2 {
color: white;
}

.location-content {
display: flex;
gap: 50px;
align-items: center;
}

.location-info {
flex: 1;
}

.location-info h3 {
font-size: 2rem;
color: var(--secondary);
margin-bottom: 20px;
}

.location-info p {
margin-bottom: 15px;
display: flex;
align-items: flex-start;
}

.location-info i {
margin-right: 15px;
color: var(--secondary);
font-size: 1.2rem;
margin-top: 5px;
}

.location-map {
flex: 1;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
height: 400px;
}

.location-map iframe {
width: 100%;
height: 100%;
border: none;
}

/* Sponsors Section */
/* Sponsors Section Styles */
.sponsors-section {
    padding: 60px 0;
    background-color: #f8f8f8; /* Consistent light background */
    text-align: center; /* Center the title and overall content */
}

.sponsors-section .section-title h2 {
    color: #e74c3c; /* Consistent title color */
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

.sponsorship-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Flexible columns */
    gap: 30px; /* Space between cards */
    margin-bottom: 60px; /* Space above the donate button */
    justify-content: center; /* Center cards horizontally in the grid */
    align-items: stretch; /* Ensure cards stretch to the same height */
}

.sponsorship-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: left; /* Align text left within cards */
}

.sponsorship-card h3 {
    font-size: 1.5rem;
    color: #e74c3c; /* Reddish color for card titles */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #eee; /* Subtle underline for titles */
    padding-bottom: 10px;
}

.sponsorship-card .sponsorship-list {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow the list to take up available space */
}

.sponsorship-card .sponsorship-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.sponsorship-card .sponsorship-list li strong {
    color: #000; /* Make the sponsor level stand out */
}

.sponsorship-card .sponsorship-list li span {
    display: block; /* Make benefits go on a new line */
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.sponsorship-card .sponsorship-description {
    font-size: 0.95rem;
    color: #555;
    margin-top: auto; /* Push description to the bottom */
}

/* Donate Section */
.donate-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 700px; /* Limit width for a cleaner look */
    margin: 0 auto; /* Center the donate section */
}

.donate-section h3 {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: bold;
}

.donate-section p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.donate-btn {
    display: inline-block;
    background-color: #4CAF50; /* Green button for donate */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.donate-btn:hover {
    background-color: #45a049;
}

/* Responsive adjustments for sponsors section */
@media (max-width: 992px) {
    .sponsorship-tiers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .sponsors-section .section-title h2 {
        font-size: 2rem;
    }

    .sponsorship-card {
        padding: 25px;
    }

    .sponsorship-card h3 {
        font-size: 1.3rem;
    }

    .sponsorship-card .sponsorship-list li {
        font-size: 1rem;
    }

    .donate-section {
        padding: 30px;
    }

    .donate-section h3 {
        font-size: 1.8rem;
    }

    .donate-section p {
        font-size: 1rem;
    }

    .donate-btn {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .sponsorship-tiers-grid {
        grid-template-columns: 1fr; /* Stack cards on very small screens */
    }
}

/* Footer */
footer {
background: var(--dark);
color: white;
padding: 60px 0 30px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-column h3 {
color: var(--secondary);
font-size: 1.5rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}

.footer-column h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background: var(--primary);
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: #ccc;
text-decoration: none;
transition: all 0.3s;
}

.footer-links a:hover {
color: var(--secondary);
padding-left: 5px;
}

.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}

.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: white;
transition: all 0.3s;
}

.social-links a:hover {
background: var(--primary);
transform: translateY(-5px);
}


/* Responsive Design */
@media (max-width: 992px) {
.hero h1 {
    font-size: 3rem;
}

.about-content, .location-content {
    flex-direction: column;
}

.about-image, .location-map {
    width: 100%;
    margin-top: 30px;
}
}

@media (max-width: 768px) {
.mobile-menu {
    display: block;
}

nav ul {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: white;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: all 0.3s ease;
}

nav ul.active {
    left: 0;
}

nav ul li {
    margin: 15px 0;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
}

.countdown {
    gap: 10px;
}

.countdown-item {
    min-width: 80px;
    padding: 10px;
}

.countdown-number {
    font-size: 1.8rem;
}

.section-title h2 {
    font-size: 2.2rem;
}
}

@media (max-width: 480px) {
.hero h1 {
    font-size: 2rem;
}

.countdown {
    flex-wrap: wrap;
}

.countdown-item {
    min-width: 70px;
}
}

.stay-tuned-text {
    text-align: center;
    margin: 2rem 0;
}

.stay-tuned-text h2 {
    font-size: 3rem;
    font-weight: 600;
    color: white;
}