/*
 * Larry Stuart - The Spirit of Hospitality
 * Common Stylesheet (Wix-free version)
 */

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #080808;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-family: 'Libre Baskerville', 'Georgia', serif;
    font-size: 2.5rem;
}

h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 3.25rem;
    font-weight: bold;
}

h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
}

h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: bold;
}

h5 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

a {
    color: #3D9BE9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #116dff;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --color-primary: #20303C;
    --color-accent: #3D9BE9;
    --color-accent-hover: #116dff;
    --color-text: #080808;
    --color-text-light: #5f6360;
    --color-white: #ffffff;
    --color-highlight: #ED1566;
    --color-background: #f5f5f5;
    --color-light-blue: #e8f4f8;
    --color-cream: #faf8f3;
    --color-light-gray: #f0f2f5;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section-light {
    background-color: var(--color-light-blue);
}

.section-white {
    background-color: #ffffff;
}

.section-cream {
    background-color: var(--color-cream);
}

.section-gray {
    background-color: var(--color-light-gray);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: normal;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--color-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dropdown-menu a:hover {
    background-color: var(--color-background);
    color: var(--color-accent);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 155, 233, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

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

/* ===== TESTIMONIAL BANNER ===== */
.testimonial-banner {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
}

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

/* ===== CORE VALUES ===== */
.core-values {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 80px 0;
    text-align: center;
}

.core-value {
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-primary);
    letter-spacing: 2px;
}

/* ===== GRID LAYOUTS ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* ===== CARD COMPONENTS ===== */
.card {
    background-color: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.card-text {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* Service Cards with Background Image */
.service-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.service-card-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 40px;
    width: 100%;
}

.service-card-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* ===== VIDEO & MEDIA ===== */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
}

.social-icon img {
    width: 100%;
    height: 100%;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-input,
.form-textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
}

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

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 14px 30px;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--color-accent-hover);
}

.form-success {
    color: #4caf50;
    font-weight: 600;
    margin-top: 10px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ===== PARTNER SECTION ===== */
.partner-section {
    background-color: var(--color-background);
    padding: 80px 0;
}

.partner-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.partner-image {
    width: 100%;
    border-radius: 4px;
}

.partner-bio h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.partner-bio p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* ===== LOGO SECTION ===== */
.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    height: 60px;
}

.logo-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* ===== BOARD MEMBER CARDS ===== */
.board-member-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.board-member-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.board-member-content {
    padding-top: 10px;
}

.board-member-name {
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.board-member-divider {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    margin-bottom: 25px;
}

.board-member-bio {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
    text-align: justify;
}

/* ===== PARTNER LOGOS GRID ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 140px;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* ===== TESTIMONIALS ===== */
.testimonials-list {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-align: center;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

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

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .core-values {
        flex-direction: column;
        gap: 40px;
    }

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

    .board-member-card {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .board-member-image img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 600px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        padding: 15px 20px;
        width: 100%;
    }

    /* Mobile Dropdown Behavior */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 12px 30px;
    }

    .dropdown > .nav-link::after {
        content: ' ▼';
        font-size: 0.7rem;
        margin-left: 8px;
    }

    .dropdown.active > .nav-link::after {
        content: ' ▲';
    }

    .hero {
        height: 400px;
        margin-top: 70px;
    }

    .hero-image {
        max-width: 400px;
    }

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

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

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

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 300px;
    }

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

    .core-value {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .partner-logo {
        height: 120px;
        padding: 15px;
    }
}
