* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #550101;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-index {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Navbar Index Scroll Effect */
/* When scrolled - add maroon background */
.navbar-index.scrolled {
    background: #550101;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hover effect for navbar-index */
.navbar-index:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Keep maroon background when scrolled, even on hover */
.navbar-index.scrolled:hover {
    background: #620202;
}

/* Ensure nav links are visible on navbar-index */
.navbar-index .nav-link {
    color: #fff;
}

.navbar-index:hover .nav-link {
    color: #000;
}

.navbar-index.scrolled .nav-link {
    color: #fff;
}

.navbar-index.scrolled:hover .nav-link {
    color: #fff;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 60px;
    width: 150px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    border-bottom: 2px solid transparent;
}

.navbar:hover .nav-link {
    color: #000;
}

.nav-link:hover {
    color: #8B0000;
    border-bottom-color: #8B0000;
}

/* Dropdown indicator */
.dropdown-toggle::after {
    content: ' ▾';
    font-size: 12px;
    margin-left: 4px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #620202;
    color: #fff;
    text-decoration: none;
}

.cta-button {
    background: #550101;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #620202;
}

.cta-button:hover {
    background: transparent;
    color: #620202;
    border-color: #620202;
}

/* Hero Section */
.hero-index {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(139, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #fff;
}

.scroll-indicator {
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* What to Do Page Styles */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.activity-card {
    display: inline-flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.activity-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.activity-card:hover .activity-title {
    color: #620202;
}

.activity-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    text-align: left;
}

.activity-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .activity-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .activity-card {
        flex-direction: column;
    }
    
    .activity-image {
        min-width: 100%;
        height: 250px;
    }
    
    .activity-content {
        padding: 20px;
    }
    
    .activity-title {
        font-size: 20px;
    }
}

/* Gallery Page Styles */
.gallery-content-section {
    width: 100%;                  
    background-color: white;     
    padding: 0px 0 60px;     
}
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 0px 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    grid-auto-rows: 200px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.5);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 20px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 500;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.close:hover,
.close:focus {
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        padding: 100px 20px 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        grid-auto-rows: 150px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-overlay h3 {
        font-size: 14px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .close {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }
    
    #caption {
        font-size: 16px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Getting There Page Styles */
.getting-there-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px 0px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #5f0505;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Transport Grid - Side by Side */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.transport-card {
    background: #550101;
    border-radius: 12px;
    padding: 35px 35px 20px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.transport-header {
    margin-bottom: 30px;
}

.transport-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
}

.transport-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* Route Sections */
.route-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.route-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.route-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.route-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #cd2929;
}

.route-steps {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.route-description {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.route-steps-detailed {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.route-steps-detailed p {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.route-steps-detailed ol {
    margin: 15px 0;
    padding-left: 20px;
}

.route-steps-detailed li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.route-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 15px;
}

.expressway-map {
    margin-top: 20px;
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.expressway-map img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.expressway-map img:hover {
    transform: scale(1.02);
}

/* Bus Section */
.bus-section {
    margin-bottom: 0;
}

.bus-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.bus-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Bus Info */
.bus-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.bus-info .info-item {
    margin-bottom: 0;
}

.bus-info .info-item strong {
    font-size: 16px;
    color: #550101;
    display: block;
    margin-bottom: 12px;
}

.bus-info .info-item p {
    margin: 5px 0;
}

/* Bus Station Maps */
.bus-station-maps {
    display: grid;
    gap: 25px;
}

.station-map {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.station-map h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    padding: 20px;
    background: #f8f9fa;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.map-embed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.map-embed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.map-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
}

.map-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.map-info p:first-child {
    font-size: 15px;
    margin-bottom: 8px;
}

.view-map-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.view-map-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .transport-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .getting-there-container {
        padding: 100px 30px 50px;
    }
    
    .section-title {
        font-size: 36px;
    }

    .map-embed {
        grid-template-columns: 1fr;
    }

    .map-embed img {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .getting-there-container {
        padding: 100px 20px 40px;
    }
    
    .section-title {
        font-size: 30px;
        margin-bottom: 35px;
    }
    
    .map-section h2,
    .transport-header h2 {
        font-size: 22px;
    }
    
    .transport-card {
        padding: 25px;
    }
    
    .transport-icon {
        font-size: 40px;
    }
    
    .route-section h3,
    .bus-section h3 {
        font-size: 16px;
    }
    
    .route-steps-detailed li {
        font-size: 13px;
    }

    .map-embed {
        grid-template-columns: 1fr;
    }

    .map-embed img {
        min-height: 200px;
    }

    .map-info {
        padding: 20px;
    }

    .station-map h4 {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .getting-there-container {
        padding: 90px 15px 30px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .transport-card {
        padding: 20px;
    }
    
    .route-steps-detailed {
        padding: 15px;
    }
    
    .bus-info {
        padding: 20px;
    }

    .map-info {
        padding: 15px;
    }

    .map-info p {
        font-size: 13px;
    }
}
/* Attraction */
/* === Grid Container for the Cards === */
.cards-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 1000px; /* Optional: prevents the grid from getting too wide */
    margin: 0 auto;
}

/* === Badge Card Styles === */
.badge-card {
    --badge-card-radius: 12px;
    --badge-card-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);

    background: #ffffff;
    border-radius: var(--badge-card-radius);
    overflow: hidden; /* Important for containing the image within rounded corners */
    box-shadow: var(--badge-card-shadow);
    position: relative; /* This is the positioning context for the badge */
    transition: transform 0.2s ease-in-out;
}

.badge-card:hover {
    transform: translateY(-5px);
}

.badge-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* === The Badge Element === */
.badge-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px; /* Pill shape */
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}


/* === Card Content === */
.badge-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.badge-card-content {
    padding: 1.5rem;
}

.badge-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #550101;
}

.badge-card-description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #4b5563;
}

/* History page */

/* Add spacing under the fixed navbar */
/* Content Section */
/* Content Section */
/* Full-width white background section */
.content-section {
    width: 100%;                  
    background-color: white;     
    padding: 120px 0 60px;     
}

/* Inner container to center content */
.content-container {
    max-width: 1200px;       
    margin: 0 auto;            
    display: flex;
    flex-wrap: wrap;          
    gap: 30px;              
    padding: 0 20px;           
}

/* Left column */
.left-column {
    flex: 1 1 25%;
}

.content-image {
    width: 80%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
}

/* Right column as boxed paragraph */
.right-column {
    flex: 1 1 40%;
    background-color: #f9f9f9;
    border-radius: 12px;                      
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);    
    border-left: 5px solid #620202;           
    padding: 30px;                              
    color: #333;                                
    text-align: justify;                         
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.6;                           
    transition: all 0.3s ease;                  
}

.right-column p {
    text-indent: 40px; 
    margin-bottom: 16px; 
}


/* Hover effect for right column */
.right-column:hover {
    transform: translateY(-5px);               
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);   
    background-color: #fff;                    
}

/* Responsive for tablets */
@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        flex: 1 1 50%;
    }

    .right-column {
        margin-top: 20px;
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .content-section {
        padding-top: 160px; /* spacing from fixed navbar */
        padding-bottom: 40px;
    }

    .right-column {
        padding: 20px;
    }
}




/* About page */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh; /* full viewport height */
    background-image: url('picture/aboutimages1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Info Section */
.info-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Clickable Info Boxes */
.info-box {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 40px 60px;
    border-radius: 10px;
    color: white;
    text-align: center;
    font-size: 1.2rem;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.info-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {

    .info-box {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Culture Page */
/* Section spacing */
.content-section {
    padding: 120px 20px 60px;  
    background-color: #fff;
}

/* Container holding the 3 divs */
.card-container {
    max-width: 1200px;
    margin: 0 auto;             
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;       
}

/* Each card */
.info-card {
    background-color: #f9f9f9;
    width: 260px;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Hover effect */
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Image inside each card */
.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Title */
.info-card h3 {
    margin-bottom: 10px;
    color: #620202;
}

/* Paragraph */
.info-card p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    color: #333;
}

/* Scoped Styles for Webmaster Section */

.webmaster * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Previously 'body', now the main wrapper class */
.webmaster {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("picture/webmaster.jpg") center/cover no-repeat;
    color: #fff;
    width: 100%;
}

.webmaster .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 0;
    text-align: center;
}

.webmaster .title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
}

.webmaster .code {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 18px;
    border: 1px solid #fff;
    font-size: 14px;
    letter-spacing: 2px;
}

.webmaster .team {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* BLACK OVERLAY CARD */
.webmaster .member {
    background: rgba(0, 0, 0, 0.75);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.webmaster .member img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

.webmaster .member h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.webmaster .member p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 12px;
}

.webmaster .member ul {
    list-style: none;
    font-size: 13px;
    line-height: 1.6;
}

.webmaster .member ul li::before {
    content: "| ";
    color: #1ea7ff;
}


/* PLACE CSS */

.place * {
    box-sizing: border-box;
}

.place {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

/* Push content below the fixed navbar */
.place h1 {
    text-align: center;
    padding-top: 140px;       /* clears the fixed navbar */
    margin-bottom: 50px;
    font-size: 28px;
    color: #2c3e50;
}

/* Grid layout — 3 equal columns, consistent rows */
.attraction-section {
    width: 100%;                      
    padding: 120px 0 60px;  
    background: #550101;
background: radial-gradient(circle, rgba(85, 1, 1, 1) 21%, rgba(255, 255, 255, 1) 78%);
}
.place .attraction-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);   /* always 3 equal columns */
    gap: 20px;
    max-width: 1200px;                       /* keep it centred and not too wide */
    margin: 0 auto;
    padding: 0 30px 60px;                    /* side breathing room + bottom space */
}

/* Card */
.place .attraction {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;                  /* stack image on top, info below */
}

.place .attraction:hover {
    transform: scale(1.03);
}

/* Every card gets the same image height */
.place .attraction img {
    width: 100%;
    height: 200px;                           /* fixed height keeps rows aligned */
    object-fit: cover;
    display: block;
}

.place .attraction .info {
    padding: 15px;
    flex: 1;                                 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.place .attraction h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #2c3e50;
}

.place .attraction p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Modal */
.place .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.place .modal-content {
    background: #fff;
    width: 80%;
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.place .modal-content img {
    width: 100%;
    border-radius: 8px;
}

.place .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* ─── Responsive ─── */

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .place .attraction-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 540px) {
    .place h1 {
        font-size: 22px;
        padding-top: 90px;
    }

    .place .attraction-container {
        grid-template-columns: 1fr;
        padding: 0 16px 40px;
    }
}

/* facilities */

.facilities {
    padding: 120px 8% 60px;
    background: #faf7f5;
}

.facilities h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #7a3b2e;
}

.facilities p {
    text-align: center;
    margin-bottom: 40px;
    color: black;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.facility-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px;
}

.facility-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.overlay h2 {
    color: white;
    font-size: 22px;
    text-align: center;
}

.facility-card:hover img {
    transform: scale(1.1);
}

.facility-card:hover .overlay {
    background: rgba(0, 0, 0, 0.6);
}


#facilityModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    transform: none;
    animation: none;
}

#facilityModal .modal-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 0;
    padding: 30px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: none;
    color: #000;
}

#facilityModal .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
}

#facilityModal .close:hover {
    color: #555;
}

#facilityModal .modal-content h2 {
    color: #222;
    margin-bottom: 12px;
}

#facilityModal .modal-content img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

#facilityModal .modal-content ul {
    padding-left: 20px;
    color: #000;
    margin: 0;
}

#facilityModal .modal-content li {
    color: #000;
    margin-bottom: 6px;
}

#facilityModal .modal-content ul li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

#facilityModal .modal-content ul li a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #550101;
    color: #fff;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .neighbourhood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .neighbourhood-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #111;
    overflow-x: hidden;
}

/* ===== COMMUNITY SECTION ===== */
.community .food-slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 200px auto 80px auto;
    position: relative;
}

.community .food-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.community .food-card {
    flex: 0 0 30%;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.community .food-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(139,0,0,0.8), transparent);
    z-index: 1;
}

.community .food-card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #fff;
}

.community .food-card h3 {
    margin-bottom: 10px;
}

.community .food-card p {
    font-size: 14px;
    line-height: 1.6;
}

.community .food-card.active {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Slider Arrows */
.community .slider-arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8B0000;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.community .slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.community #prev { left: 20px; }
.community #next { right: 20px; }

/* ===== MODAL ===== */
.food-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.food-modal-content {
    background: #fff;
    border-radius: 18px;
    max-width: 900px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    animation: modalFade 0.3s ease;
    position: relative;
}

@keyframes modalFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #8B0000;
    cursor: pointer;
}

.food-modal-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.food-modal-left { flex: 1 1 40%; }
.food-modal-left img { width: 100%; border-radius: 12px; }
.food-modal-right { flex: 1 1 55%; color: #111; }

@media (max-width: 768px) {
    .food-modal-inner { flex-direction: column; }
    .community .food-card { flex: 0 0 80%; }
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

/* ===== FOOD SECTION SCOPE ===== */
.food .food-slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 200px auto 80px auto;
    position: relative;
}

.food .food-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.food .food-card {
    flex: 0 0 30%;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.food .food-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(139,0,0,0.8), transparent);
    z-index: 1;
}

.food .food-card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #fff;
}

.food .food-card h3 { margin-bottom: 10px; }
.food .food-card p { font-size: 14px; line-height: 1.6; }

.food .food-card.active {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Arrows */
.food .slider-arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8B0000;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.food .slider-arrow:hover {
    transform: translateY(-50%) scale(1.1); /* Adjusted from 5.0 for usability */
}

.food #prev { left: 20px; }
.food #next { right: 20px; }

/* ===== MODAL ===== */
.food-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.food-modal-content {
    background: #fff;
    border-radius: 18px;
    max-width: 900px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    animation: modalFade 0.3s ease;
    position: relative;
}

@keyframes modalFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #8B0000;
    cursor: pointer;
}

.food-modal-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.food-modal-left { flex: 1 1 40%; }
.food-modal-left img { width: 100%; border-radius: 12px; }
.food-modal-right { flex: 1 1 55%; color: #111; }

@media (max-width: 768px) {
    .food-modal-inner { flex-direction: column; }
    .food .food-card { flex: 0 0 80%; }
}

/* ===== FAQ SECTION ===== */

.faq-section {

    max-width: 1200px;

    margin: 150px auto 60px;

    padding: 0 20px;

}



.faq-section h2 {

    text-align: center;

    margin-bottom: 40px;

    font-size: 32px;

    color: #8B0000;

}



.faq-item {

    border-bottom: 1px solid #ddd;

    padding: 15px 0;

    cursor: pointer;

    transition: all 0.3s ease;

}



.faq-item h3 {

    font-size: 20px;

}



.faq-item p {

    display: none;

    margin-top: 10px;

    font-size: 15px;

    line-height: 1.6;

}



/* ===== MAP + CONTACT FORM ===== */

.contact-map-section {

    max-width: 1200px;

    margin: 60px auto;

    display: flex;

    gap: 40px;

    padding: 0 20px;

    flex-wrap: wrap;

}



.map-container {

    flex: 1 1 50%;

    min-height: 350px;

}



.map-container iframe {

    width: 100%;

    height: 100%;

    border: 0;

    border-radius: 18px;

}



.contact-form-container {

    flex: 1 1 50%;

    background: #f9f9f9;

    padding: 30px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}



.contact-form-container h3 {

    margin-bottom: 20px;

    color: #8B0000;

}



.contact-form-container input,

.contact-form-container textarea {

    width: 100%;

    padding: 12px 15px;

    margin-bottom: 15px;

    border: 1px solid #ccc;

    border-radius: 8px;

    font-size: 14px;

}



.contact-form-container button {

    background: #8B0000;

    color: #fff;

    padding: 12px 20px;

    border: none;

    border-radius: 8px;

    cursor: pointer;

    font-size: 16px;

    transition: all 0.3s ease;

}



.contact-form-container button:hover {

    background: #550101;

}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {

    .contact-map-section {
        flex-direction: column;
    }

    .map-container,
    .contact-form-container {
        flex: 1 1 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media (max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .faq-section h2 {
        font-size: 28px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .contact-form-container h3 {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

}