/* =========================================================
   LONG ISLAND BEEKEEPING
   Fully Formatted Website Stylesheet
   ========================================================= */


/* =========================================================
   COLOR VARIABLES
   ========================================================= */

:root {
    --black: #111111;
    --dark: #271707;
    --honey: #f2a900;
    --gold: #ffcc42;
    --cream: #fff8e7;
    --soft: #fff0bd;
    --white: #ffffff;
    --green: #4f6f35;
    --border: #e8d19a;
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   TOP CONTACT BAR
   ========================================================= */

.topbar {
    background: #000000;
    color: var(--gold);
    text-align: center;
    padding: 9px 15px;
    font-size: 15px;
    font-weight: bold;
}

.topbar a {
    color: var(--gold);
}


/* =========================================================
   HEADER AND NAVIGATION
   ========================================================= */

.header {
    background: var(--black);
    color: var(--white);
    border-bottom: 4px solid var(--honey);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    max-width: 1180px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 22px;
    font-weight: 800;
}

.logo-link img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.logo-link strong {
    color: var(--honey);
}

.nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 18px;
    align-items: center;
    font-weight: bold;
}

.nav a:hover,
.nav a.active {
    color: var(--honey);
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
    min-height: 650px;
    padding: 90px 20px;
    background:
        linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .35)),
        url("images/hero.jpg");
    background-position: center;
    background-size: cover;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 960px;
    margin: auto;
}

.badge {
    background: var(--honey);
    color: #000000;
    display: inline-block;
    padding: 8px 17px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.02;
    margin-bottom: 22px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, .45);
}

.hero p {
    max-width: 780px;
    margin: 0 auto 30px;
    font-size: 21px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.button {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 999px;
    font-weight: 800;
}

.button-primary {
    background: var(--honey);
    color: #000000;
}

.button-light {
    background: var(--white);
    color: #000000;
}


/* =========================================================
   GENERAL LAYOUT
   ========================================================= */

section {
    padding: 75px 20px;
}

.container {
    max-width: 1180px;
    margin: auto;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 42px;
}

.section-title h1,
.section-title h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 12px;
}

.section-title p {
    max-width: 780px;
    margin: auto;
    color: #5f4a2b;
}


/* =========================================================
   GRID SYSTEM
   ========================================================= */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

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


/* =========================================================
   CARDS
   ========================================================= */

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}


/* =========================================================
   HIGHLIGHT BOXES AND BACKGROUNDS
   ========================================================= */

.highlight {
    background: linear-gradient(135deg, var(--honey), #ffe485);
    padding: 28px;
    border-radius: 22px;
    margin-top: 20px;
}

.soft {
    background: var(--soft);
}


/* =========================================================
   SHOP / PRODUCT CARDS
   ========================================================= */

.product-price {
    margin: 12px 0 18px;
    color: #6a5325;
    font-weight: bold;
}

.shop-button {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: bold;
}

.shop-button:hover {
    background: var(--honey);
    color: #000000;
}

.label-image {
    max-width: 210px;
    height: auto;
    object-fit: contain;
    margin: 20px auto 0;
    background: #ffffff;
    padding: 8px;
}

.gift-logo {
    max-width: 155px;
    height: auto;
    object-fit: contain;
    margin: 28px auto 18px;
    background: #000000;
    border-radius: 50%;
    padding: 6px;
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-box {
    background: #000000;
    color: var(--white);
    text-align: center;
    padding: 28px 20px;
    border-radius: 26px;
    border: 3px solid var(--honey);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-box h2 {
    color: var(--honey);
    margin-bottom: 12px;
    font-size: clamp(28px, 5vw, 42px);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.contact-list p {
    margin: 0;
}

.contact-list a {
    color: var(--gold);
    font-weight: bold;
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-list a:hover {
    color: var(--white);
}


/* =========================================================
   SOCIAL MEDIA BRAND ICONS
   ========================================================= */

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 25px;
}

.social-icons a {
    font-size: 40px;
    line-height: 1;
    transition: transform .2s ease, opacity .2s ease;
}

.social-icons a:hover {
    transform: scale(1.15);
    opacity: .9;
}

.social-icons .fa-facebook {
    color: #1877F2;
}

.social-icons .fa-instagram {
    color: #E1306C;
}

.social-icons .fa-youtube {
    color: #FF0000;
}




/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-list {
    display: grid;
    gap: 18px;
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 6px solid var(--honey);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.faq-item h3 {
    margin-bottom: 8px;
    color: var(--dark);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #120b04;
    color: var(--white);
    text-align: center;
    padding: 32px 20px;
}

.footer p {
    margin: 4px 0;
    opacity: .88;
}


/* =========================================================
   RESPONSIVE STYLES
   ========================================================= */

@media (max-width: 980px) {

    .nav {
        flex-direction: column;
    }

    .nav ul {
        justify-content: center;
    }

    .logo-link img {
        width: 82px;
        height: 82px;
    }

}

@media (max-width: 880px) {

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

    .hero {
        min-height: 540px;
    }

    .hero h1 {
        font-size: 42px;
    }

}

@media (max-width: 768px) {

    html {
        scroll-padding-top: 170px;
    }

    section {
        padding: 55px 14px;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

    .contact-box {
        padding: 22px 14px;
        border-radius: 20px;
    }

    .contact-list {
        font-size: 15px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icons a {
        font-size: 38px;
    }

}

@media (max-width: 420px) {

    .topbar {
        font-size: 13px;
        line-height: 1.5;
    }

    .logo-link {
        font-size: 18px;
    }

    .contact-box {
        padding: 20px 10px;
    }

    .contact-list {
        font-size: 14px;
    }

}
