/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.header-logo {
    height: 100px;
}

.brand-icon {
    color: #F68735;
    margin-right: 10px;
    font-size: 1.8rem;
}
.btn:hover {
    background: #F68735;
    color: white;
}
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #F68735;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #F68735;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 16px;
    color: #666;
    font-size: 14px;
}

.dropdown-item:hover i {
    color: #F68735;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    background: #F68735;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #F68735;
    transform: translateY(-2px);
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 500;
}

.phone-info i {
    color: #F68735;
}



/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)), url('includes/assets/images/guitar-music-outdoors.png');
    background-size: cover;
    background-position: center;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: white;
    height: 960px
}



.hero-content h1 {
    font-size:76px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 100%;
    font-family: 'Gilroy-ExtraBold';
}

.hero-content p {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Gilroy-Medium';
    margin-bottom: 30px;
    opacity: 0.9;
}

.stats-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat-badge {
    /* background: rgba(241, 237, 237, 0.15); */
    /* padding: 20px; */
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 200px;
    transition: transform 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-5px);
}

.stat-badge .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 5px;
}

.stat-badge i {
    color: #F68735;
    font-size: 1.5rem;
}

.stat-badge .stat-content {
    display: flex;
    flex-direction: column;
}

.stat-badge .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-badge .stat-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.2;
}

/* Inquiry Form */
.inquiry-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    /* backdrop-filter: blur(20px); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.inquiry-form-container h3 {
    color: white;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.form-subtitle {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.inquiry-form .form-control,
.inquiry-form .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #F68735;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    outline: none;
}

.btn-warning {
    background: #F68735;
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: #F68735;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.disclaimer a {
    color: #F68735;
    text-decoration: none;
}

.disclaimer a:hover {
    color: #F68735;
}
.inquiry-submit-btn{
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Popular Locations Section */
.popular-locations-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.popular-locations-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.location-header i {
    color: #dc3545;
    font-size: 1rem;
}

.location-header h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.location-address {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 1px;
}

.stars i {
    color: #ffc107;
    font-size: 12px;
}

.rating-text {
    color: #666;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-outline-warning {
    border: 1px solid #F68735;
    color: #F68735;
    background: transparent;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-outline-warning:hover {
    background: #F68735;
    color: white;
    transform: translateY(-1px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #F68735;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h4 i {
    color: #F68735;
    font-size: 1.1rem;
}

.info-card p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-card .btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-card .btn-warning {
    background: #F68735;
    border: 1px solid #F68735;
    color: white;
}

.info-card .btn-warning:hover {
    background: #e67a2e;
    border-color: #e67a2e;
    transform: translateY(-2px);
}

.info-card .btn-outline-warning {
    border: 1px solid #F68735;
    color: #F68735;
    background: transparent;
}

.info-card .btn-outline-warning:hover {
    background: #F68735;
    color: white;
    transform: translateY(-2px);
}

/* Serving All Ages Section */
.serving-ages-section {
    padding: 80px 0;
    background: white;
}

.serving-ages-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: left;
    max-width: 100%;
}

.section-description p {
    margin-bottom: 20px;
}

.age-card {
    background: #f58220;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    transition: transform 0.3s ease;
    height: 100%;
    max-width: 600px;
}

.age-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

.card-image {
    height: 450px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.age-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h4 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.card-content p {    
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 18px;
}

/* Learn Section */
.learn-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.learn-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.learn-module {
    margin-bottom: 60px;
}

.learn-module:last-child {
    margin-bottom: 0;
}

.module-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-content {
    padding: 20px 0;
}

.module-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.module-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Instruments Section */
.instruments-section {
    padding: 80px 0;
    background: white;
}

.instruments-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.instrument-item {
    background: white;
    padding: 30px 20px;
    text-align: left;
    transition: all 0.3s ease;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.instrument-item:nth-child(3n) {
    border-right: none;
}

.instrument-item:nth-child(n+7) {
    border-bottom: none;
}

.instrument-item:hover {
    background: rgba(255, 193, 7, 0.1);
}

.instrument-item:hover i {
    color: #F68735;
}

.instrument-item:hover span {
    color: #F68735;
}

.instrument-item:hover span::after {
    background: #F68735;
}

.instrument-item.active {
    background: rgba(255, 193, 7, 0.1);
}

.instrument-item i {
    font-size: 2.5rem;
    color: #666;
    display: block;
    flex-shrink: 0;
}

.instrument-item.active i {
    color: #F68735;
}

.instrument-item span {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    display: block;
    position: relative;
    line-height: 1.2;
}

.instrument-item.active span {
    color: #F68735;
}

.instrument-item span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #666;
}

.instrument-item.active span::after {
    background: #F68735;
}

/* Footer */
.footer {
    /* background: #f8f9fa; */
    color: #333;
    /* padding: 60px 0 20px; */
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 0;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.soul-of-music {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.request-btn {
    background: #F68735;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.request-btn:hover {
    background: #e0762a;
    transform: translateY(-2px);
}

.footer h5 {
    color: #F68735;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #F68735;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.phone-info i {
    color: #F68735;
}

.social-section {
    margin-top: 20px;
}

.social-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #F68735;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .request-btn {
        justify-content: center;
        margin: 0 auto 20px;
    }
    
    .phone-info {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .inquiry-form-container {
        margin-top: 30px;
        padding: 25px;
    }
    
    .instruments-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .navbar-nav {
        text-align: center;
        margin: 20px 0;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .learn-module .row {
        flex-direction: column;
    }
    
    .module-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .serving-ages-section h2,
    .learn-section h2,
    .instruments-section h2 {
        font-size: 2rem;
    }
    
    .inquiry-form-container {
        padding: 20px;
    }
    
    .age-card .card-content {
        padding: 20px;
    }
} 

/* .content-center {
    display: ;
} */

/* Responsive Design */
@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .popular-locations-section h2 {
        font-size: 2rem;
    }
}

/* Responsive Design for Map Section */
@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-info {
        flex-direction: row;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .map-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .map-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .map-wrapper iframe {
        height: 300px;
    }
    
    .info-card {
        padding: 20px;
    }
}

/* 01/09/2025 */



    .absl-header {
        border-bottom: 0.5px solid #918E8E;
        background: white;
    }
    .absl-header {
        position: relative;
        max-height: 115px;
    }
    .hero-content { 
        display: block;
    }
     .hero-section { 
    background:url('assets/images/location_background.png');
    background-size: cover;
    background-position: center;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: white;
    height: 960px
    }

/* contact us page css */
 /* Responsive Design */
    @media (max-width: 1024px) {
        .events-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 15px;
        }

        .event-card.wide {
            grid-column: span 2;
        }
    }

    @media (max-width: 768px) {
        .events-section {
            padding: 60px 0;
        }

        .events-grid {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 0 15px;
        }

        .event-card.wide {
            grid-column: span 1;
            aspect-ratio: 4/3;
        }

        .event-card {
            aspect-ratio: 4/3;
        }
    }

    @media (max-width: 480px) {
        .events-section {
            padding: 40px 0;
        }

        .events-grid {
            gap: 12px;
            padding: 0 12px;
        }
    }

    /* Contact Box Styles */
    .contact-box {
        background: white;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        max-width: 500px;
        margin-left: auto;
        max-height: 363px;
    }

    .contact-box h2 {
        font-family: 'Gilroy-ExtraBold';
        font-size: 56px;
        font-weight: 400;
        color: #1B1B1B;
    }

    .contact-box p {
        font-family: 'Gilroy-Medium';
        font-size: 20px;
        color: #1B1B1B;
        line-height: 30px;
    }

    .contact-info {
        text-align: left;
    }

    .contact-item {
        padding: 10px;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        transform: translateX(5px);
    }

    .contact-item i {
        font-size: 1.2rem;
        color: #F68735;
        margin-right: 15px;
        min-width: 20px;
    }

    .contact-item span {
        font-family: 'Gilroy-Medium', sans-serif;
        font-size: 1.1rem;
        color: #F68735;
        font-weight: 500;
    }

    /* Hero Section Styles */

    /* Responsive Hero */
    @media (max-width: 768px) {
        .hero-section {
            padding: 100px 0 60px;
            margin-top: 60px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content p {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-section {
            padding: 80px 0 40px;
            margin-top: 50px;
        }

        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 0.9rem;
        }
    }

    .absl-header {
        border-bottom: 0.5px solid #918E8E;
        background: white;
    }

    .absl-header {
        position: relative;
    }

    .hero-content {
        display: block;
    }

    /* gallery page css  */
     /* Gallery Section Styles */
    .events-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

   

    /* Wide Cards (span 2 columns) */
    .event-card.wide {
        grid-column: span 2;
    }

    /* Tall Cards (span 2 rows) */
    .event-card.tall {
        grid-row: span 2;
    }

    /* Stacked Images Container */
    .event-card.stacked {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .event-card.stacked img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }

    /* Empty Cells */
    .event-card.empty {
        background: white;
        border: 2px dashed #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-style: italic;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .events-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 15px;
        }

        .event-card.wide {
            grid-column: span 2;
        }
    }

    @media (max-width: 768px) {
        .events-section {
            padding: 60px 0;
        }

        .events-grid {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 0 15px;
        }

        .event-card.wide {
            grid-column: span 1;
            aspect-ratio: 4/3;
        }

        .event-card {
            aspect-ratio: 4/3;
        }
    }

    @media (max-width: 480px) {
        .events-section {
            padding: 40px 0;
        }

        .events-grid {
            gap: 12px;
            padding: 0 12px;
        }
    }

    /* Hero Section Styles */

    /* Responsive Hero */
    @media (max-width: 768px) {
        .hero-section {
            padding: 100px 0 60px;
            margin-top: 60px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content p {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-section {
            padding: 80px 0 40px;
            margin-top: 50px;
        }

        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 0.9rem;
        }
    }
    .gallery {
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 10px;
        padding: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .gallery div {
        position: relative;
        overflow: hidden;
        border: 3px #F68735 solid;
    }
    .gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 5px 8px;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        font-size: 12px;
    }
    .wide {
        grid-column: span 2;
    }

    .wide-extra {
        grid-column: span 3;
    }

    .tall {
        grid-row: span 2;
    }

    .big {
        grid-column: span 2;
        grid-row: span 2;
    }

    @media (max-width: 900px) {
        .gallery {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .gallery {
            grid-template-columns: 1fr;
        }
    }
      .gallery_heading {
        margin-left: auto;
        margin-right: auto;
        display: block;
        font-size: 30px;
        font-weight: 30px;
        font-family: 'Gilroy-Medium';
        text-align: center;
    }