/* Font Declarations */
@font-face {
    font-family: 'Lugrasimo';
    src: url('../fonts/Lugrasimo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Luxurious Roman';
    src: url('../fonts/LuxuriousRoman-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Prakruta';
    src: url('../fonts/prakrta_.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background: linear-gradient(257deg, rgba(33, 73, 255, 0.26) 8.42%, rgba(55, 67, 161, 0.26) 35.21%, rgba(186, 97, 224, 0.26) 91.58%), rgba(0, 0, 0, 0.85);
    color: #fff;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}
img { max-width: 100%; } 

/* Navbar Styles */
.navbar {
    background-color: #6b2c91;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    height: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
}

.navbar-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    margin-left: 15px;
    cursor: pointer;
    align-self: center;
  
    margin-bottom: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #f0b429;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 20px;
}

.nav-item {
    margin-left: 12px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links {
    color: #f0b429;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 8px 8px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links:hover {
    text-decoration: underline;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #6b2c91;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 4px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-item {
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: rgba(240, 180, 41, 0.1);
    color: #f0b429;
    padding-left: 16px;
}

/* Add arrow indicator for dropdowns */
.dropdown .nav-links::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-links::after {
    transform: rotate(180deg);
}

.tickets-button {
    background-color: #f0b429;
    color: #1f1544;
    padding: 8px 18px;
    border-radius: 24px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.tickets-button:hover {
    background-color: #fff;
    color: #f0b429;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid #f0b429;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 480px;
    padding: 20px 20px 30px;
    color: white;
    overflow: hidden; /* Prevent image overflow */
}

.hero-image {
    position: absolute;
    left: -30px; /* Changed from 0 to -30px to move it more to the left */
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px; /* Wider gradient */
    height: 100%;
   
    z-index: 1;
}

.dancer-img {
    height: 100%;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3)) brightness(1.05);
    position: relative;
    left: -20px;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-content {
    margin-left: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    width: 70%;
    padding-right: 40px;
    margin-top: -10px;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: contain;
    background-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Luxurious Roman', serif;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.festival-title {
    font-family: 'Prakruta', cursive;
    font-size: 4rem;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.833);
    margin-top: -20px; /* Added negative margin to move text up */
	color:#fff
}

.tampa-title {
    font-family: 'Luxurious Roman', serif;
    font-size: 2rem;
    margin-top: -45px;
    margin-bottom: 5px;
    font-weight: 300;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    padding: 15px 0px;
	color:#fff

}

/* Button Container - moved up by reducing space after tampa-title and adding negative margin */
.button-container {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    margin-top: 3px; /* Added negative margin to move up */
}

/* Main Action Buttons */
.action-button {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    will-change: transform;
    transform: translateZ(0);
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.action-button:hover::before {
    width: 100%;
}

.exhibits-btn {
    background-color: #4285f4; /* Blue */
    color: white;
    border-color: #4285f4;
}

.exhibits-btn:hover {
    background-color: #3367d6;
    border-color: #3367d6;
}

.register-btn {
    background-color: #0f9d58; /* Green */
    color: white;
    border-color: #0f9d58;
}

.register-btn:hover {
    background-color: #0b8043;
    border-color: #0b8043;
}

.sponsor-btn {
    background-color: #9c27b0; /* Purple */
    color: white;
    border-color: #9c27b0;
}

.sponsor-btn:hover {
    background-color: #7b1fa2;
    border-color: #7b1fa2;
}

/* Tickets Action Button - same idea, moved up slightly */
.tickets-action-button {
    margin-top: 15px; /* Added negative margin to move up */
    margin-right: 10px;
    background-color: #f0b429; /* Gold */
    color: #1f1544;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: 'Luxurious Roman', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tickets-action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 30px;
}

.tickets-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.tickets-action-button:hover::before {
    width: 100%;
}

/* Sponsors Section */
.sponsors-section {
    padding: 15px 6px 10px;
    text-align: center;
    background-color: white;
    color: #333;
    overflow: hidden;
}

.sponsors-title {
    color: #800020;
    margin: 18px 0 0px;
    text-shadow: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.sponsors-carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 0;
    overflow: hidden;
}

.sponsors-wrapper {
    overflow: hidden;
    margin: 10px 0;
    position: relative;
}

.sponsors-row {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
}

.sponsors-row-1 {
    animation: scroll-left 20s linear infinite;
}

.sponsors-row-2 {
    animation: scroll-right 20s linear infinite;
}

.sponsor-logo {
    width: 120px;
    height: 80px;
    background-color: #ddd;
    border: 1px solid #ccc;
    margin: 0 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
	align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
	
	
}
.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* ensures image scales properly within box */
    display: block;
}
.sponsor-logo:hover {
    transform: scale(1.05);
    background-color: #e5e5e5;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 6 - 30px * 6)); /* Width of 6 logos plus their margins */
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-120px * 6 - 30px * 6)); /* Start from negative position */
    }
    100% {
        transform: translateX(0);
    }
}

/* Add pause on hover */
.sponsors-row:hover {
    animation-play-state: paused;
}

/* Stats Section */
.stats-section {
    padding: 10px 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.902);
    color: #333;
    position: relative;
}

.stats-title {
    font-size: 1.5rem;
    color: #333;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-right: 60px;
    gap: 80px; /* Equal spacing between circles */
}

.stat-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    margin: 20px 0;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -60px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    z-index: 0;
    background: url('../images/attendeebg.png');
    background-size: 270px 270px;
    background-position: center;
    animation: rotate-bg 20s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg) translateZ(0);
    }
    100% {
        transform: rotate(360deg) translateZ(0);
    }
}

.stat-circle-green::before {
    opacity: 0.9;
    animation-duration: 90s; /* Slightly slower rotation */
}

.stat-circle-purple::before {
    opacity: 0.85;
    filter: hue-rotate(40deg);
    animation-duration: 70s; /* Faster rotation */
}

.stat-circle-orange::before {
    opacity: 0.8;
    filter: hue-rotate(-40deg);
    animation-duration: 115s; /* Medium rotation speed */
}

.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: 50px; /* Reset to center in circle */
    margin-left: 0; /* Reset to center in circle */
    padding: 0 2px;
}

.stat-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0px;
    font-weight: bold;
    text-align: center;
    margin-top: 0;
    color: #000;
    line-height: 1.2;
}

.stat-content p {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #000;
    margin-top: 0;
    line-height: 1.2;
}

.get-involved {
    width: 280px;
    text-align: left;
    padding: 15px;
    flex-shrink: 0;
}

.get-involved h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: 'Luxurious Roman', serif;
    color: #333;
}

.get-involved p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #555;
}

.register-action-button {
    background-color: #0f9d58; /* Green */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    will-change: transform;
    transform: translateZ(0);
}

.register-action-button:hover {
    background-color: #0b8043;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 2500px) {
    .stat-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1;
        position: relative;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
        width: 100%;
        height: 100%;
        text-align: center;
        margin-top: -20px; /* Reset to center in circle */
        margin-left: -65px; /* Reset to center in circle */
        padding: 0 20px;
    }
    
}




/* Responsive styles for stats section */
@media (max-width: 1200px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-circles {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        justify-content: center;
        gap: 40px;
    }

    .stat-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1;
        position: relative;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
        width: 100%;
        height: 100%;
        text-align: center;
        margin-top: 0; /* Reset to center in circle */
        margin-left: -10px; /* Reset to center in circle */
        padding: 0 20px;
    }
    
}

@media (max-width: 890px) {
    .stats-circles {
        flex-direction: column;
        gap: 60px; /* Increased gap between circles */
    }

    .stat-circle {
        background-color: transparent;
        box-shadow: none;
        margin: 20px 0; /* Added margin for more spacing */
    }

    .stat-circle::before {
        top: -30px; /* Increased spacing from top */
        left: -60px;
        width: 270px;
        height: 270px;
    }

    .stat-content {
        z-index: 2;
        margin-top: 35px;
        margin-left: -5px;
        padding: 0 20px;
    }
}

/* About Section */
.about-section {
    padding: 0;
    background: linear-gradient(257deg, rgba(33, 73, 255, 0.15) 8.42%, rgba(55, 67, 161, 0.15) 35.21%, rgba(186, 97, 224, 0.15) 91.58%), rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto;
}

.about-content {
    width: 50%;
    background-color: #6b2c91; /* Purple background */
    padding: 40px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.about-content h2 {
    font-family: 'Luxurious Roman', serif;
    text-align: left;
    margin-bottom: 20px;
    font-size: 2.2rem;
	color:#fff;
}

.about-content .text-content {
    flex-grow: 1;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-image {
    width: 50%;
    height: 100%;
    background-image: url('../images/trophy.png');
    background-size: cover;
    background-position: center;
    border-radius: 0 10px 10px 0;
    min-height: 400px;
}

.learn-more-btn {
    background-color: white;
    color: #6b2c91;
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 20px;
}

.learn-more-btn:hover {
    background-color: #f0b429;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for about section */
@media screen and (max-width: 890px) {
    .about-section {
        flex-direction: column;
    }
    
    .about-content, .about-image {
        width: 100%;
        border-radius: 10px;
    }
    
    .about-content {
        border-radius: 10px 10px 0 0;
    }
    
    .about-image {
        border-radius: 0 0 10px 10px;
        min-height: 300px;
    }
}

/* Team Section */
.team-section {
    background-color: transparent;
    padding: 60px 20px;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: rgb(218, 213, 213);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: 200px;
    padding: 15px;
    border-radius: 8px;
    color: #333;
}

.team-image {
    height: 150px;
    background-color: #645d5d;
    margin-bottom: 10px;
    border-radius: 4px;
}

.team-card p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
}

.credit-line {
    font-size: 0.9rem;
    color: #f0b429;
    font-weight: 500;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .navbar-container {
        padding: 0 15px;
    }

    .hero-content {
        padding-right: 20px;
    }

    .festival-title {
        font-size: 4rem;
    }
	.festival-title h1 {

		color: white;
	}
    .tampa-title {
        font-size: 3.5rem;
    }

    .stats-circles {
        gap: 40px;
    }

    .stat-circle {
        width: 180px;
        height: 180px;
    }

    .nav-links {
        font-size: 0.75rem;
        padding: 8px 6px;
    }

    /* Hide less important links */
    .nav-item:nth-child(5), /* VENUE */
    .nav-item:nth-child(6) { /* GALLERY */
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .nav-links {
        font-size: 0.7rem;
        padding: 8px 4px;
    }

    .nav-item {
        margin-left: 8px;
    }

    .tickets-button {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    /* Hide more links */
    .nav-item:nth-child(7), /* TEAMS */
    .nav-item:nth-child(8) { /* FAQ */
        display: none;
    }

    .festival-title {
        font-size: 3.5rem;
    }

    .tampa-title {
        font-size: 3rem;
        margin-top: -35px;
    }

    .button-container {
        gap: 10px;
    }

    .action-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stats-circles {
        gap: 30px;
    }

    .stat-circle {
        width: 160px;
        height: 160px;
    }

    .stat-content h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 890px) {
    .navbar {
        height: 60px;
    }

    .navbar-container {
        padding: 0 10px;
    }

    .menu-toggle {
        display: flex;
        align-self: center;
        margin-top: -25px;
    }

    /* Hide all nav items except logo and ticket button */
    .nav-item {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #6b2c91;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: 0.3s ease;
        overflow-y: auto;
        margin-right: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu.active .nav-item {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
    }

    .nav-links {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
        height: auto;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-item {
        padding: 10px 0;
    }

    .tickets-button {
        margin-left: 10px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .hero-section {
        min-height: 400px;
    }

    .hero-content {
        margin-left: 0;
        width: 100%;
        padding-right: 0;
    }

    .festival-title {
        font-size: 3rem;
    }

    .tampa-title {
        font-size: 2.5rem;
        margin-top: -30px;
    }

    .button-container {
        flex-direction: column;
        gap: 15px;
    }

    .action-button {
        width: 100%;
        max-width: 300px;
    }

    .tickets-action-button {
        width: 100%;
        max-width: 300px;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stats-circles {
        flex-direction: column;
        gap: 30px;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .stat-circle {
        width: 200px;
        height: 200px;
    }

    .get-involved {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .about-section {
        flex-direction: column;
        margin: 20px auto;
    }

    .about-content, .about-image {
        width: 100%;
    }

    .about-content {
        border-radius: 10px 10px 0 0;
    }

    .about-image {
        border-radius: 0 0 10px 10px;
        min-height: 300px;
    }
}

@media screen and (max-width: 890px) {
    .navbar-logo {
        height: 40px;
    }

    .hero-section {
        min-height: 350px;
        padding: 15px;
    }

    .festival-title {
        font-size: 2.5rem;
    }

    .tampa-title {
        font-size: 2rem;
        margin-top: -25px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .action-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .tickets-action-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stat-circle {
        width: 160px;
        height: 160px;
    }

    .stat-content h3 {
        font-size: 1.2rem;
    }

    .stat-content p {
        font-size: 0.9rem;
    }

    .get-involved h3 {
        font-size: 1.8rem;
    }

    .about-content {
        padding: 20px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .menu-toggle {
        width: 25px;
        height: 18px;
    }

    .nav-menu {
        padding: 15px;
    }

    .nav-links {
        font-size: 0.9rem;
    }

    .tickets-button {
        padding: 6px 10px;
        font-size: 0.65rem;
    }
}

/* Mobile Navigation Menu */
@media screen and (max-width: 890px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #6b2c91;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-links {
        font-size: 1rem;
        padding: 10px 0;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-item {
        padding: 8px 0;
    }

    /* Add hamburger menu button */
    .menu-toggle {
        display: block;
        cursor: pointer;
        padding: 10px;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #f0b429;
        margin: 5px 0;
        transition: 0.3s;
    }
}

.nav-left {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 500px) {
    .hero-section {
        min-height: 500px;
        padding: 20px;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        margin-left: 0;
        width: 100%;
        padding-right: 0;
    }
}

@media screen and (max-width: 576px) {
    .logo {
        width: 120px;
        height: 120px;
    }
} 