/*@import"https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&amp;family=Playfair+Display:ital,wght@0,400;0,700;1,400&amp;display=swap";*/
@import"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css";

:root {
    --primary: #003057;
    --primary-light: #005a9c;
    --secondary: #C5A059;
    --accent: #D4AF37;
    --dark: #1F2937;
    --light: #F9FAFB;
    --white: #ffffff;
    --gray: #6B7280;
    --glass-bg: rgba(255, 255, 255, .85);
    --glass-border: rgba(255, 255, 255, .4);
    --glass-shadow: 0 15px 45px rgba(0, 48, 87, .08);
    --font-main: "Outfit", sans-serif;
    --font-heading: "Playfair Display", serif;
    --easing: cubic-bezier(.4, 0, .2, 1);
    --radius: 12px
}

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

body {
    font-family: var(--font-main);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s var(--easing)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -.02em
}

h1 {
    font-size: 3rem
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem
}

h3 {
    font-size: 1.5rem;
    margin-bottom: .75rem
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.text-white {
    color: var(--white)
}

.text-center {
    text-align: center
}

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

.section {
    padding: 5rem 0
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0
    }
}

.responsive-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px #0000000d
}

.mobile-stack {
    display: flex;
    flex-direction: column
}

@media (min-width: 769px) {
    .mobile-stack {
        flex-direction: row
    }
}

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

.patron-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.patron-content {
    order: 2
}

.patron-image {
    order: 1
}

@media (max-width: 768px) {

    .contact-grid,
    .patron-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .patron-content {
        order: 1
    }

    .patron-image {
        order: 2
    }
}

.btn {
    display: inline-block;
    padding: .9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: all .4s var(--easing);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .85rem;
    text-align: center
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px #00305733
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #0030574d
}

.btn-secondary {
    background: transparent;
    border-color: var(--secondary);
    color: var(--primary)
}

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

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: all .4s var(--easing);
    border: 1px solid rgba(0, 48, 87, .05)
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px #0030571f;
    border-color: var(--secondary)
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow)
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fffffff2;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px #0000000d;
    padding: 1rem 0;
    transition: all .3s
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: .5rem
}

.logo span {
    color: var(--secondary)
}

.nav-links {
    display: flex;
    gap: 2rem
}

.nav-links a {
    font-weight: 500;
    color: var(--dark);
    position: relative
}

.nav-links a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--secondary);
    transition: width .3s
}

.nav-links a:hover:after {
    width: 100%
}

.nav-links a.active {
    color: var(--primary)
}

.dropdown {
    position: relative;
    display: inline-block
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px #0000001a;
    z-index: 1001;
    border-radius: 8px;
    top: 100%;
    left: 0;
    padding: .5rem 0;
    border: 1px solid rgba(0, 0, 0, .05)
}

.dropdown-content a {
    color: var(--dark);
    padding: .75rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: all .2s
}

.dropdown-content a:hover {
    background-color: var(--light);
    color: var(--primary);
    padding-left: 1.75rem
}

.dropdown-content a:after {
    display: none
}

.dropdown:hover .dropdown-content {
    display: block
}

.dropdown i {
    font-size: .8rem;
    margin-left: .3rem;
    transition: transform .3s
}

.dropdown:hover i {
    transform: rotate(180deg)
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(#003366d9, #003366b3), url(/images/photo-1593113598332-cd288d649433.jpg) center/cover no-repeat;
    color: var(--white);
    padding-top: 80px
}

.hero-content {
    max-width: 700px
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.1
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: .9
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: -80px;
    position: relative;
    z-index: 10
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px #0000001a
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .5rem
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem
}

@media (max-width: 992px) {
    .grid-2x2 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
    }
}

.feature-card {
    position: relative;
    overflow: hidden
}

.feature-img {
    height: 200px;
    background-color: var(--gray);
    border-radius: 12px 12px 0 0;
    overflow: hidden
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.feature-card:hover .feature-img img {
    transform: scale(1.1)
}

.feature-content {
    padding: 1.5rem
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 0
}

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

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 1.5rem
}

.footer-links li {
    margin-bottom: .8rem
}

.footer-links a:hover {
    color: var(--secondary)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.5rem 0;
    text-align: center;
    opacity: .7;
    font-size: .9rem
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer
}

@media (max-width: 768px) {
    .header {
        height: 60px;
        padding: 0 1rem
    }

    .logo-primary {
        font-size: 1.2rem
    }

    .logo-secondary {
        font-size: .7rem
    }

    .menu-toggle {
        display: block
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        align-items: center;
        transform: translateY(-150%);
        transition: transform .3s;
        box-shadow: 0 10px 20px #0000001a;
        overflow-y: auto
    }

    .nav-links.active {
        transform: translateY(0)
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 1rem
    }

    .hero h1 {
        font-size: 2.2rem
    }
}

.news-feed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto
}

.news-item {
    border-left: 4px solid var(--secondary);
    transition: all .3s var(--easing)
}

.news-item:hover {
    border-left-width: 8px
}

.news-date {
    font-size: .85rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: .5rem
}

.news-excerpt {
    color: var(--gray);
    margin-top: 1rem
}

.news-full-content {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    line-height: 1.8
}

.news-item.expanded .news-full-content {
    display: block
}

.news-item.expanded .news-excerpt {
    display: none
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.read-more-btn:hover {
    text-decoration: underline
}

@media (max-width: 768px) {
    .news-feed {
        padding: 0 1rem
    }
}