:root {
    --primary: #0a1e39;
    --primary-light: #1c2f52;
    --accent: #c5a059;
    --accent-dark: #a67c37;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --text-muted: #666;
    --bg-light: #ffffff;
    --bg-warm: #fdfcf8;
    --transition: all 0.4s ease;
    --container: 1400px;
    --shadow: 0 15px 35px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-light);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 25px;
}

.section {
    padding: 50px 0;
}

.bg-warm {
    background-color: var(--bg-warm);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                -webkit-backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-links a {
    color: white;
}

.btn-cta {
    color: white !important;
    background-color: var(--primary);
    border: 2px solid var(--accent);
    padding: 8px 20px;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .btn-cta {
    color: var(--accent) !important;
    background-color: transparent;
    border-color: var(--accent);
}

.navbar.scrolled .nav-toggle span {
    background: white !important;
}

.nav-links.active ~ .nav-toggle {
    display: none !important;
}
}

.nav-toggle {
    display: none;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: url('images/exterior2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 80px;
    box-sizing: border-box;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 17, 40, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.hero-logo-badge {
    background: rgba(10, 30, 57, 0.7) !important;
    backdrop-filter: blur(1px) !important;
    -webkit-backdrop-filter: blur(1px) !important;
    border: 2px solid rgba(197, 160, 89, 0.4) !important;
    border-radius: 24px !important;
    padding: 30px 100px !important;
    margin: 0 auto !important;
    animation: fadeInDown 0.8s ease-out !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.hero-logo-badge h1 {
    margin-bottom: 20px !important;
    margin-top: 0 !important;
}

.hero-logo-badge p {
    margin: 0 !important;
}

.hero-logo-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.6rem !important;
    color: white !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    display: block !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

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

/* Image Carousel */
.image-carousel {
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 15px;
    animation: scroll 40s linear infinite;
    width: fit-content;
    padding: 0 20px;
}

.carousel-track img {
    height: 180px;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
    border: 3px solid rgba(197, 160, 89, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0 40px 0;
    background: var(--bg-light);
}

/* Homepage Grid */
.homepage-grid {
    padding: 20px 0 60px 0;
    background: var(--bg-light);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    grid-auto-rows: auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .grid-cards {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .grid-cards {
        padding: 0 40px;
    }
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(197, 160, 89, 0.4);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-header {
    padding: 30px 30px 15px;
    border-bottom: 2px solid var(--bg-warm);
}

.card-header h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-large {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .card-large {
        grid-column: span 2;
    }
}

/* Welcome Card Redesign */
.card-welcome {
    overflow: visible;
    margin-bottom: 30px;
}

.card-welcome-layout {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .card-welcome-layout {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 0;
    }
}

.welcome-image {
    height: 250px;
}

@media (min-width: 768px) {
    .welcome-image {
        height: 100%;
        border-radius: 8px 0 0 8px;
    }
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-content {
    padding: 40px !important;
    display: flex;
    flex-direction: column;
}

.welcome-header {
    margin-bottom: 25px;
}

.welcome-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.welcome-header .lead {
    font-size: 1.3rem;
    color: var(--accent);
    font-style: italic;
    margin: 0;
}

.welcome-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.team-section-card {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, rgba(197, 160, 89, 0.08) 100%);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.team-section-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
}

.team-section-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-section-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 0 12px 0;
}

.team-section-content > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.passion-highlight {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(197, 160, 89, 0.3);
}

.passion-badge {
    background: white;
    border-left: 4px solid var(--accent);
    padding: 15px;
    border-radius: 4px;
    margin-top: 12px;
}

.passion-badge strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.passion-badge p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.welcome-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid rgba(197, 160, 89, 0.15);
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .welcome-footer {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

.welcome-footer span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-icon {
    font-size: 1.3em;
    color: var(--accent);
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.6);
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    filter: drop-shadow(0 2px 4px rgba(197, 160, 89, 0.3));
}

.footer-icon.dog-icon {
    content: '🐾';
}

.footer-icon.accessible-icon {
    content: '♿';
}

.footer-icon.heart-icon {
    content: '❤️';
}

.team-image-inline {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.menu-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.highlight {
    padding: 15px;
    background: var(--bg-warm);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
}

.highlight h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.highlight p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.team-item p {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-block {
    margin-bottom: 20px;
}

.info-block h4 {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}

.info-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Welcome Section */
.welcome {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.lead {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.welcome-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    margin-top: 60px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}




/* Big Sport Section */
.sport-section {
    padding: 180px 0;
    background: linear-gradient(rgba(10, 17, 40, 0.75), rgba(10, 17, 40, 0.75)), url('images/bar1.png') center/cover no-repeat fixed;
    color: white;
    text-align: center;
}

.sport-section .section-title {
    font-size: 4rem;
    color: white;
}

.sport-section p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.sport-tags {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
}

.sport-tags span { color: var(--accent); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.info-block h4 {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
}

.info-block p {
    margin-bottom: 30px;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-container-large {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Contact Form Section */
.contact-form-section-standalone {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, rgba(197, 160, 89, 0.08) 100%);
}

.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 8px;
    border: 2px solid rgba(197, 160, 89, 0.4);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-card .form-group {
    margin-bottom: 25px;
}

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

.contact-form-card {
    background: var(--bg-warm);
    padding: 50px;
    border: 1px solid #eee;
}

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 16px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px 40px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    padding: 100px 0 50px;
    background: #0a1e39;
    color: white;
    text-align: center;
}

.footer a {
    color: white !important;
    text-decoration: none;
}

.footer a:visited {
    color: white !important;
}

.footer a:hover {
    color: var(--accent) !important;
}

.footer-bottom {
    margin-top: 50px;
    font-size: 14px;
    opacity: 0.5;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    .navbar .logo img {
        height: 36px;
    }

    .nav-toggle {
        display: block !important;
    }

    .nav-toggle span {
        width: 20px;
        height: 2px;
        margin: 4px 0;
    }

    .nav-close {
        display: none !important;
    }

    .nav-links.active .nav-close {
        display: block !important;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 8px;
        position: absolute;
        top: 56px;
        right: 16px;
        background: white;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        min-width: 180px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        gap: 20px;
        background: linear-gradient(135deg, rgba(10, 30, 57, 0.98) 0%, rgba(28, 47, 82, 0.98) 100%);
        padding: 80px 24px 24px;
        border-radius: 0;
        box-shadow: none;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .nav-links.active a {
        padding: 12px 20px;
        font-size: 1.1rem;
        color: white;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-links.active a:hover {
        color: var(--accent);
    }

    .nav-links.active .btn-cta {
        background: var(--accent);
        color: white !important;
        border-radius: 8px;
        margin-top: 12px;
    }

    .nav-links.active .btn-cta:hover {
        background: var(--accent-dark);
        color: var(--primary);
    }

    .nav-toggle.open {
        display: none !important;
    }

    /* Hero */
    .hero {
        min-height: 100vh !important;
        height: 100vh !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        position: relative !important;
        padding-top: 0 !important;
    }

    .hero-content {
        width: 100% !important;
        height: 100% !important;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(10, 17, 40, 0.4); */
    }

    .hero .container {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin: 0;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        width: 100vw;
        height: 100%;
        max-width: 100vw;
        padding: 0;
        margin: 0;
        margin-left: calc(-50vw + 50%);
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-logo-badge {
        width: 100vw !important;
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 20px 12px !important;
        box-sizing: border-box !important;
        background: rgba(10, 30, 57, 0.7) !important;
        margin-top: 0 !important;
        overflow-y: auto !important;
    }

    .hero-logo {
        display: none !important;
    }

    .hero-logo-text {
        padding-bottom: 16px !important;
    }

    .hero-logo-badge > p:nth-of-type(1) {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 20px !important;
    }

    .hero-logo-badge > div[style*="grid"] {
        gap: 0 !important;
        margin-top: 12px !important;
        max-width: 100vw !important;
        width: 100vw !important;
        padding: 0 !important;
        margin-left: -12px !important;
        margin-right: -12px !important;
        grid-template-columns: 1fr 1fr !important;
    }

    .hero-logo-badge h1 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }

    .hero-logo-badge h1 br {
        display: none;
    }

    .hero-logo-badge p {
        font-size: 0.85rem !important;
        margin-bottom: 16px !important;
    }

    .hero-logo-badge > div[style*="grid"] > div {
        height: 130px !important;
        max-height: 130px !important;
        min-height: 130px !important;
        border-radius: 0 !important;
        border: 1px solid rgba(197, 160, 89, 0.15) !important;
    }

    .hero-logo-badge > div[style*="grid"] img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        max-width: none !important;
    }

    .hero-logo-badge > div[style*="grid"] > div > div {
        height: 100% !important;
        background: rgba(0,0,0,0.35) !important;
    }

    .hero-logo-badge > div[style*="grid"] span {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
    }

    .hero-logo-badge > p:nth-of-type(2) {
        font-size: 1.1rem;
        margin-top: 0;
        opacity: 1;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-shadow: 0 0 20px rgba(197, 160, 89, 0.6), 0 0 40px rgba(197, 160, 89, 0.3);
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }

    .hero-logo-badge > p:nth-of-type(2) span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }

    .hero-logo-badge > p:nth-of-type(2) span[style*="color: rgba(197, 160, 89"] {
        display: flex !important;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    /* Carousel */
    .image-carousel {
        padding: 20px 0;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 30px 0;
    }

    .card-welcome-layout {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 200px;
    }

    .welcome-content {
        padding: 10px !important;
        display: flex;
        flex-direction: column;
    }

    /* Grid Cards */
    .homepage-grid {
        padding: 30px 0;
    }

    .grid-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 20px;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }

    .card-header .lead {
        font-size: 0.9rem;
    }

    /* Menu Card */
    .card#menu {
        grid-template-columns: 1fr;
    }

    .card#menu .menu-desktop {
        display: none !important;
    }

    .card#menu .menu-mobile {
        display: block !important;
        grid-column: 1 / -1 !important;
        height: auto !important;
    }

    .card#menu img {
        height: 180px;
    }

    .menu-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Sports Card */
    .card#sport {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .card#sport > div:first-child {
        border-radius: 8px 8px 0 0 !important;
        height: 200px !important;
        overflow: hidden !important;
    }

    .card#sport > div:first-child img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .card#sport > div:last-child {
        border-left: none !important;
        border-top: 1px solid rgba(197, 160, 89, 0.2) !important;
        padding: 20px !important;
    }

    /* Map Section */
    .map-section {
        padding: 20px 0;
    }

    .map-section > .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .map-section iframe {
        height: 300px !important;
    }

    /* Contact Form */
    .contact-form-card {
        padding: 20px;
    }

    /* Forms */
    .form-group {
        margin-bottom: 16px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }

    /* Buttons */
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
    }

    /* Footer */
    .footer {
        padding: 40px 0 30px;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        margin-top: 20px;
    }

    /* General spacing */
    .section {
        padding: 40px 0;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }

    /* Highlight boxes */
    .highlight {
        padding: 12px 0;
    }

    .highlight h4 {
        font-size: 0.95rem;
    }

    .highlight p {
        font-size: 0.85rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar .container {
        flex-direction: column;
        gap: 8px;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        position: relative;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(10, 17, 40, 0.4); */
    }

    .hero .container {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin: 0;
    }

    .hero-content {
        width: 100vw;
        height: 100%;
        max-width: 100vw;
        padding: 0;
        margin: 0;
        margin-left: calc(-50vw + 50%);
    }

    .hero-logo-badge {
        width: 100vw;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 12px;
        box-sizing: border-box;
        background: rgba(10, 30, 57, 0.7) !important;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .hero-logo-badge > p:nth-of-type(1) {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px !important;
    }

    .hero-logo-badge > div[style*="grid"] {
        gap: 3px !important;
        margin-top: 8px !important;
        max-width: 100% !important;
    }

    .hero-logo-badge > div[style*="grid"] > div {
        height: 80px !important;
    }

    .hero-logo-badge > div[style*="grid"] span {
        font-size: 0.65rem !important;
    }

    .hero-logo-badge > p:nth-of-type(2) {
        font-size: 1rem;
        margin-top: 0;
        opacity: 1;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-shadow: 0 0 20px rgba(197, 160, 89, 0.6), 0 0 40px rgba(197, 160, 89, 0.3);
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }

    .hero-logo-badge > p:nth-of-type(2) span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }

    .hero-logo-badge > p:nth-of-type(2) span:has(+ span) ~ span:only-of-type,
    .hero-logo-badge > p:nth-of-type(2) span[style*="color: rgba(197, 160, 89"] {
        display: flex !important;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .hero-logo {
        max-height: 50px !important;
    }

    .card {
        padding: 16px;
    }

    .card-header h2 {
        font-size: 1.2rem;
    }

    .card-header .lead {
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

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

    .map-section iframe {
        height: 250px !important;
    }

    .footer {
        padding: 30px 0 20px;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1rem; }

    .navbar {
        padding: 8px 0;
    }

    .navbar .logo img {
        height: 32px;
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        margin: 3px 0;
    }

    .nav-links.active {
        padding: 70px 20px 20px;
        gap: 16px;
    }

    .nav-links.active a {
        padding: 10px 18px;
        font-size: 1rem;
    }

    .nav-links.active .btn-cta {
        margin-top: 10px;
    }

    section[style*="background: linear-gradient"] img {
        height: 50px !important;
    }

    .footer > .container > div:first-child {
        flex-direction: column;
        text-align: center;
    }

    .footer > .container > div:first-child > div:first-child {
        margin-bottom: 20px;
    }

    .footer > .container > div:first-child > div:nth-child(2) {
        order: -1;
        margin-bottom: 20px;
    }
}
