/* CARNIVAL - Premium Highway Food Court Styles */

:root {
    --primary-red: #D71920;
    --accent-yellow: #FBB040;
    --dark-gray: #2B2B2B;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border-light: #E9ECEF;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--accent-yellow));
    --gradient-dark: linear-gradient(135deg, var(--dark-gray), #1a1a1a);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Header Styles */
.navbar {
    background:#601E24;
    backdrop-filter: blur(15px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(43, 43, 43, 0.98);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 45px;
    width: 45px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-yellow);
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin: 0 8px;
    padding: 10px 20px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--gradient-primary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 25, 32, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 1000px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/carnival-ban.png') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 background: linear-gradient(135deg, rgb(215 25 32 / 23%) 0%, rgba(43, 43, 43, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-logo {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(242, 242, 242, 0.5);
}

.title-main {
    display: block;
    background: linear-gradient(45deg, var(--white), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    display: block;
    font-size: 0.6em;
    color: var(--accent-yellow);
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: -10px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-yellow);
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Stats Container */
.stats-container {
    margin: 60px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 5px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-15px);
    background: rgba(251, 176, 64, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom:0px;
}

.stat-number {
 
    font-weight: 900;
   font-size: 26px;
    color: var(--accent-yellow);
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: var(--accent-yellow);
    color: var(--white);
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(215, 25, 32, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(215, 25, 32, 0.4);
    color: var(--white);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
    font-weight: 700;
    padding: 16px 33px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-outline-primary-custom:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(215, 25, 32, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Info Section */
.quick-info-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.quick-info-item {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: left;
}

.quick-info-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px var(--shadow-medium);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.info-content h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-size: 1.3rem;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* About Preview Section */
.about-preview-section {
    padding: 120px 0;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.about-image-container img {
    transition: all 0.4s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(215, 25, 32, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.about-image-container:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.about-content {
    padding-left: 40px;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-red);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Brand Preview Section */
.brands-preview-section {
    background: var(--light-gray);
    padding: 120px 0;
}

.brand-preview-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-light);
    transition: all 0.4s ease;
    height: 100%;
}

.brand-preview-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px var(--shadow-medium);
}

.brand-image {
    height: 200px;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.brand-preview-card:hover .brand-image img {
    transform: scale(1.1);
}

.brand-info {
    padding: 30px 25px;
    text-align: center;
}

.brand-info h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.brand-info p {
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Amenities Preview Section */
.amenities-preview-section {
    padding: 120px 0;
}

.amenity-preview-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.amenity-preview-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px var(--shadow-medium);
}

.amenity-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.amenity-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.amenity-preview-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-size: 1.3rem;
}

.amenity-preview-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    background: var(--light-gray);
    padding: 120px 0;
}

.location-content {
    padding-right: 40px;
}

.location-details {
    margin: 40px 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.location-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.location-info h6 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.location-info p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.location-map {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow-medium);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-description {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px var(--shadow-dark);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-dark);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.call-btn {
    background: var(--gradient-primary);
    color: white;
}

.location-btn {
    background: linear-gradient(135deg, var(--primary-red), #B71C1C);
    color: white;
}

.scroll-top-btn {
    background: linear-gradient(135deg, var(--dark-gray), #1a1a1a);
    color: white;
}

.btn-text {
    position: absolute;
    right: 75px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
}

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

.footer-brand h5 {
    color: var(--accent-yellow);
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-yellow);
}

.footer-tagline {
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(215, 25, 32, 0.4);
}

.footer h5 {
    color: var(--accent-yellow);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 8px;
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0.6;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-red);
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--accent-yellow);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 50px 0 30px;
}

.copyright-text {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.badge-item i {
    margin-right: 5px;
    color: var(--accent-yellow);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        padding-left: 20px;
    }
    
    .location-content {
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .location-content {
        padding-left: 0;
        padding-right: 0;
        margin-top: 50px;
    }
    
    .quick-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-text {
        font-size: 2rem;
    }
    
    .floating-icons {
        right: 20px;
        bottom: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .btn-text {
        display: none;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 20px;
    }
        .center-logo {
    text-align: center;
    margin-right:0px !important;
  }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .navbar-logo {
        height: 35px;
        width: 35px;
    }
    
    .hero-logo {
        height: 120px;
        width: 120px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 1.6rem;
    }
    
    .btn-primary-custom,
    .btn-outline-light,
    .btn-outline-primary-custom {
        padding: 15px 25px;
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 250px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
/* ===== Mobile Layout Fix for Carnival Site ===== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
    }
    
    .hero-section {
        min-height: auto !important; /* Remove forced 1000px height */
        height: auto !important;
        padding: 60px 15px !important;
    }

    .hero-content {
        padding: 0 15px;
    }

    section, 
    .quick-info-section,
    .about-preview-section,
    .brands-preview-section,
    .amenities-preview-section,
    .location-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }
}
/* Fix for text going below fixed header */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 180px !important; /* Adjust based on header height */
    }
}