/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    --primary-orange: #FF6B35;
    --primary-teal: #3BA4D8;
    --dark-blue: #023E8A;
    --light-gray: #F8F9FA;
    --dark-gray: #212529;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Athletic Bold Font Style - Matching Logo */
.athletic-font {
    font-family: 'Montserrat', 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        -2px -2px 0 var(--white),
        2px -2px 0 var(--white),
        -2px 2px 0 var(--white),
        2px 2px 0 var(--white),
        -3px 0 0 var(--white),
        3px 0 0 var(--white),
        0 -3px 0 var(--white),
        0 3px 0 var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

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

.logo img {
    height: 120px;
    width: auto;
    max-width: 500px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-orange);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 25px;
}

.nav-cta:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 600px;
    margin-top: 90px;
    overflow: hidden;
    background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-overlay {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-top: 280px;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-family: 'Montserrat', 'Impact', 'Arial Black', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 
        -3px -3px 0 rgba(0, 0, 0, 0.3),
        3px -3px 0 rgba(0, 0, 0, 0.3),
        -3px 3px 0 rgba(0, 0, 0, 0.3),
        3px 3px 0 rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.hero-tagline {
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease;
}

.tagline-text {
    font-family: 'Montserrat', 'Impact', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 30px;
    border-top: 4px solid var(--white);
    border-bottom: 4px solid var(--white);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.6s ease;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #E55A2B;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Montserrat', 'Impact', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-teal));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    color: #6c757d;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.highlight-item h3 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Sports Section
   =================================== */
.sports {
    background: var(--white);
}

.sports-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Montserrat', 'Impact', 'Arial Black', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-title i {
    color: var(--primary-orange);
}

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

.sport-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.sport-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.sport-card.featured {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-teal));
    color: var(--white);
}

.sport-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.sport-card.featured .sport-icon {
    color: var(--white);
}

.sport-card h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.sport-card.featured h4 {
    color: var(--white);
}

.sport-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

.sport-card.featured p {
    color: var(--white);
}

/* ===================================
   Facilities Section
   =================================== */
.facilities {
    background: linear-gradient(135deg, var(--primary-teal), var(--dark-blue));
    color: var(--white);
}

.facilities .section-title,
.facilities .section-subtitle {
    color: var(--white);
}

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

.facility-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.facility-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.facility-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.facility-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.facility-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.facilities-cta {
    text-align: center;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--white);
    color: var(--primary-teal);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    background: var(--light-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.why-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* ===================================
   Community Section
   =================================== */
.community {
    background: var(--white);
}

.community-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.community-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.community-item:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateX(10px);
}

.community-item i {
    font-size: 1.5rem;
    color: var(--primary-teal);
}

.community-item:hover i {
    color: var(--white);
}

.community-message {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-top: 40px;
}

/* ===================================
   Occasions Section
   =================================== */
.occasions {
    background: var(--light-gray);
}

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

.occasion-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
}

.occasion-card:hover {
    border-color: var(--primary-teal);
    transform: scale(1.05);
}

.occasion-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.occasion-card p {
    font-weight: 500;
    color: var(--dark-blue);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 180, 216, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--primary-orange);
}

.lightbox-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
}

.lightbox-nav button:hover {
    background: var(--primary-teal);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.info-card h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.info-card p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.info-card a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--primary-orange);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.contact-form button {
    width: 100%;
}

/* ===================================
   Social Section
   =================================== */
.social {
    background: var(--white);
    text-align: center;
    padding: 60px 0;
}

.social h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark-gray);
    transition: var(--transition);
}

.social-link i {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
    transition: var(--transition);
}

.social-link:hover i {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-teal));
    color: var(--white);
    transform: translateY(-10px);
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-teal));
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta-banner h2 {
    font-family: 'Montserrat', 'Impact', 'Arial Black', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 
        -2px -2px 0 rgba(0, 0, 0, 0.2),
        2px -2px 0 rgba(0, 0, 0, 0.2),
        -2px 2px 0 rgba(0, 0, 0, 0.2),
        2px 2px 0 rgba(0, 0, 0, 0.2);
}

.cta-banner > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-note {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

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

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

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
    width: auto;
    max-width: 100%;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section .tagline {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-teal);
    margin-top: 10px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--primary-teal);
    margin-right: 10px;
    width: 20px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-teal);
    transform: translateY(-5px);
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo img {
        height: 90px;
        max-width: 350px;
    }

    .hero-image img {
        max-width: 600px;
    }

    .hero-overlay {
        margin-top: 220px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

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

    .tagline-text {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

    .logo img {
        height: 75px;
        max-width: 280px;
    }

    .hero {
        min-height: 500px;
        padding: 40px 20px;
    }

    .hero-image {
        padding: 30px;
    }

    .hero-image img {
        max-width: 500px;
    }

    .hero-overlay {
        margin-top: 180px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .tagline-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .cta-banner h2 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
        max-width: 220px;
    }

    .hero-image {
        padding: 20px;
    }

    .hero-image img {
        max-width: 95%;
    }

    .hero-overlay {
        margin-top: 150px;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .tagline-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav button {
        padding: 15px 20px;
        font-size: 1.5rem;
    }

    .close-lightbox {
        right: 20px;
        font-size: 2rem;
    }
}