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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111827;
    line-height: 1.6;
    background: #ffffff;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Light gray background for alternating sections */
.bg-light-gray {
    background: #f3f3f3;
}

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

/* Topbar */
.topbar {
    background: #1f2937;
    padding: 12px 0;
    border-bottom: 1px solid #374151;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.topbar-left {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.topbar-right {
    font-size: 13px;
    font-weight: 500;
    color: #ff6b6b;
    letter-spacing: 0.2px;
}

/* Header */
header {
    background: #ffffff;
    padding: 30px 0 0;
    border-bottom: 2px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

header .container {
    position: relative;
}

.header-top {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #6b7280;
    font-size: 18px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
}

.header-middle {
    display: flex;
    justify-content: center;
    padding-bottom: 25px;
}

.logo {
    display: block;
}

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

nav {
    display: flex;
    justify-content: center;
    background: #2d3748;
    padding: 0;
    border-top: 1px solid #e2e8f0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 18px 32px;
    display: block;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
    background: #1f2937;
    border-bottom-color: #ff6b6b;
}

/* Mobile Menu Toggle - Hidden on desktop */
.mobile-menu-toggle {
    display: none;
}


/* Content Sections */
.content-section {
    padding: 100px 0;
    position: relative;
}

.section-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.section-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.red-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.25);
}

.red-box h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #fff;
}

.red-box ul {
    list-style: none;
    margin-bottom: 30px;
}

.red-box li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.red-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #ff6b6b;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    margin-right: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.3);
}

.btn:hover {
    background: #ee5a6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-dark {
    background: #111827;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background: #1f2937;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.red-box .btn {
    background: #fff;
    color: #ff6b6b;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.red-box .btn:hover {
    background: #f9fafb;
    color: #ee5a6f;
}

h1 {
    font-size: 56px;
    margin-bottom: 30px;
    color: #111827;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #111827;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4b5563;
    font-size: 17px;
}

/* Three column sections */
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.col-box {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.col-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.col-box img {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.col-box h3 {
    font-size: 22px;
    margin-bottom: 18px;
}

.col-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

/* Location grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.location-card {
    background: #fff;
    padding: 35px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    border-color: #ff6b6b;
}

.location-card h3 {
    color: #ff6b6b;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
    padding: 100px 0;
}

.faq-section h2 {
    color: #fff;
}

.faq-section .red-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.faq-section .red-box h3 {
    color: #fff;
}

.faq-section .red-box p {
    color: rgba(255, 255, 255, 0.95);
}

/* Footer */
footer {
    background: #2d3748;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: 40px;
    margin-bottom: 50px;
}

footer h4 {
    margin-bottom: 25px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 12px;
}

footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

footer a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 15px;
    color: #fff;
}

.footer-bottom p {
    color: #fff;
}

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

    .two-col-layout {
        gap: 50px;
    }

    nav a {
        padding: 18px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }

    /* Topbar */
    .topbar {
        padding: 10px 0;
    }

    .topbar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .topbar-left,
    .topbar-right {
        font-size: 11px;
    }

    /* Header */
    header {
        padding: 20px 0 0;
    }

    header .container {
        position: relative;
    }

    .header-top {
        display: none;
    }

    .header-middle {
        position: relative;
    }

    .logo img {
        height: 100px;
    }

    /* Mobile Menu Toggle - Position next to logo on mobile */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #2d3748;
        font-size: 28px;
        padding: 10px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-toggle:hover {
        color: #ff6b6b;
    }

    /* Navigation - Mobile Menu */
    nav {
        position: relative;
        justify-content: center;
        padding: 0;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2d3748;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 0;
        margin: 0;
    }

    nav ul.mobile-menu-open {
        display: flex;
    }

    nav li {
        width: 100%;
        border-bottom: 1px solid #374151;
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        padding: 15px 20px;
        font-size: 15px;
        width: 100%;
        text-align: left;
        border-bottom: none !important;
    }

    nav a:hover,
    nav a.active {
        background: #1f2937;
        border-bottom: none !important;
    }

    /* Typography */
    h1 {
        font-size: 32px;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    h2 {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: left;
    }

    h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    p {
        font-size: 16px;
        line-height: 1.7;
    }

    /* Content Sections */
    .content-section {
        padding: 30px 0;
    }

    .section-divider-top svg,
    .section-divider-bottom svg {
        height: 40px;
    }

    /* Two Column Layouts */
    .two-col-layout {
        grid-template-columns: 1fr !important;
        gap: 40px;
        display: flex !important;
        flex-direction: column-reverse;
    }

    /* Job Placement Section - Reverse order on mobile */
    .two-col-layout[style*="1fr 1.5fr"] {
        display: flex !important;
        flex-direction: column-reverse;
    }

    /* Hero section - show pricing card first */
    .content-section:first-of-type .two-col-layout {
        flex-direction: column-reverse;
    }

    /* Center h2 on mobile when inside two-col-layout */
    .two-col-layout h2 {
        text-align: center;
    }

    /* Bartender Training Section - Better image display */
    .two-col-layout img[alt*="cocktails"] {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0 auto 30px;
        display: block;
        border-radius: 12px;
    }

    /* List items with icons - better spacing */
    .two-col-layout ul {
        padding: 0;
        margin-bottom: 15px !important;
    }

    .two-col-layout li {
        margin-bottom: 15px !important;
        padding: 8px 0 !important;
        padding-left: 30px !important;
        font-size: 15px !important;
    }

    .two-col-layout li i {
        font-size: 16px !important;
        margin-right: 8px !important;
    }

    /* Job Placement card list - reduce spacing */
    .two-col-layout div[style*="background: linear-gradient(135deg, #2d3748"] ul li {
        padding: 8px 0 !important;
        font-size: 14px !important;
    }

    .two-col-layout div[style*="background: linear-gradient(135deg, #2d3748"] ul li i {
        margin-right: 8px !important;
        font-size: 14px !important;
    }

    /* Buttons */
    .btn {
        width: 100%;
        justify-content: center;
        margin-right: 0;
        padding: 14px 30px;
        font-size: 15px;
    }

    /* Three Column Sections */
    .three-col {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .col-box {
        padding: 30px 20px;
    }

    .col-box h3 {
        font-size: 20px;
    }

    .col-box p {
        font-size: 15px;
    }

    /* Red Box / Pricing Cards */
    .red-box {
        padding: 35px 30px;
    }

    .red-box h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .red-box li {
        font-size: 15px;
        padding: 10px 0;
    }

    /* Location Grid */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .location-card {
        padding: 25px;
    }

    .location-card h3 {
        font-size: 20px;
    }

    .location-card p {
        font-size: 15px;
    }

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

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

    footer h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    footer a,
    footer li {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .logo img {
        height: 110px;
    }

    nav a {
        padding: 12px 16px;
        font-size: 13px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .red-box {
        padding: 25px 20px;
    }

    .col-box {
        padding: 25px 15px;
    }
}
