/* ===== CSS Variables ===== */
:root {
    --primary-color: #fbb214;
    --dark-color: #282828;
    --light-color: #f8f8f8;
}

/* ===== Base Styles ===== */
html,
body {
    height: 100%;
    font-family: 'Lato', sans-serif;
    color: var(--dark-color);
}

/* ===== Layout ===== */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #1f1f1f;
    color: #ffffff;
    overflow: hidden;
}

.header {
    padding: 20px 0;
    background-color: #1a1a1a;
    position: relative;
    z-index: 10;
}

.logo {
    max-width: 212px;
    height: auto;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url(https://kranbeer.com/background.jpg);
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.content-wrapper {
    text-align: center;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== Typography ===== */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    color: var(--primary-color);
}

h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* ===== Components ===== */
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 30px auto;
    display: block;
}

.button {
    display: inline-block;
    min-width: 200px;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    color: #ffffff;
    background-color: transparent;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
}

.button:hover {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.back-link:hover {
    color: #fff;
}

/* ===== Info Boxes ===== */
.contact-info {
    margin-top: 40px;
    color: #fff;
    font-size: 1rem;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info .icon {
    color: var(--primary-color);
    margin-right: 8px;
}

.features-box {
    background: rgba(251, 178, 20, 0.1);
    border-left: 4px solid #fbb214;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
    text-align: left;
}

.features-box h5 {
    color: #fbb214;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.features-box ul {
    margin: 0;
    padding-left: 20px;
    color: #ccc;
    line-height: 1.8;
}

.features-box li {
    margin-bottom: 10px;
}

.features-box strong {
    color: #fff;
}

.location-info {
    font-size: 1rem;
    color: #ddd;
    margin: 25px 0;
}

.location-info strong {
    color: #fbb214;
}

.intro-text {
    font-size: 1.1rem;
    margin: 20px 0;
    line-height: 1.6;
    color: #ddd;
}

.intro-text strong {
    color: #fbb214;
}

/* ===== Social & Links ===== */
.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin: 0 5px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ===== Breadcrumbs ===== */
nav ol.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
}

nav ol.breadcrumbs li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

nav ol.breadcrumbs li a:hover {
    color: #fff;
    text-decoration: underline;
}

nav ol.breadcrumbs li span {
    color: #ccc;
}

.breadcrumb-divider {
    color: var(--primary-color);
}

/* ===== Feature Cards ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(251, 178, 20, 0.3);
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(251, 178, 20, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h5 {
    font-size: 1.3rem;
    margin: 15px 0;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    margin: 0;
}

/* ===== Events Grid - 2 columns ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

/* ===== Events grid - 3 columns ===== */
.events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

.events-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(251, 178, 20, 0.3);
    transition: all 0.3s;
}

.events-card:hover {
    background: rgba(251, 178, 20, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.events-card h5 {
    font-size: 1.3rem;
    margin: 15px 0;
    color: #fff;
}

.events-card p {
    color: #ccc;
    margin: 0 0 15px 0;
}

/* Features grid - 2 columns */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

/* ===== Responsive Design ===== */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .contact-info {
        font-size: 0.9rem;
    }

    .contact-info p {
        margin: 8px 0;
    }

    .button {
        min-width: 150px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .features-box h5 {
        font-size: 1rem;
    }

    .features-box ul {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .location-info {
        font-size: 0.9rem;
    }

    .content-wrapper {
        padding: 0 10px;
    }

    nav ol.breadcrumbs {
        font-size: 0.75rem;
    }

    .logo {
        max-width: 160px;
    }

    .intro-large {
        font-size: 1rem;
    }

    .events {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    nav ol.breadcrumbs {
        font-size: 0.85rem;
        gap: 5px;
    }

    .features {
        gap: 20px;
        padding: 0 10px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}