* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100%;
}

html, body {
    background-color: #121212;
    color: #eaeaea;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;    
    overflow-x: hidden;
    max-width: 100%;
}

header {
    background-color: #0a0a0a;
    color: #fff;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; 
    border-bottom: 1px solid #2a2a2a;
    ;
}
.logo img {
    max-width: 500px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; 
}

header h1 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
   
    
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
}


header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    padding: 40px 20px;
}

header nav ul li a:hover {
    opacity: 0.6;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.5px;
}


nav ul li a:hover {
    color: #c9a86a; /* warm amber accent, used sparingly */
    opacity: 1;
}

/* ---------------- */


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 1rem;
    text-align: center;
   
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    border-color: #c9a86a;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 0.75rem;
}

.product-card h3 {
    color: #f0f0f0;
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-weight: bold;
    color: #c9a86a;
}
.section-title-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.section-title-link:hover {
    opacity: 0.6;
}
/* ---------------- */


/* Sale Section */
#sale {
    padding: 3rem 2rem;
    text-align: center;
}

#sale h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 1px solid #000;
    margin-bottom: 1rem;
}

.slide h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.slide .price {
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-weight: normal;
    margin-right: 0.5rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.slider-btn:hover {
    opacity: 0.7;
}

.slider-btn.prev {
    left: 0.5rem;
}

.slider-btn.next {
    right: 0.5rem;
}


/* ---------------- */






/* All Products Section */
#all {
    text-align: center;

}

#all h1 {
    text-align: center;
    padding: 4rem 2rem;

}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.Beer-card,
.Wine-card,
.Liquor-card{
    border: 10px solid #000;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    width: 100%;
    height: 100%;
}
.Beer-card,
.Wine-card,
.Liquor-card {
    padding: 2rem;
}

@media (max-width: 600px) {
    .Beer-card,
    .Wine-card,
    .Liquor-card {
        padding: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}
.Beer-card img,
.Wine-card img,
.Liquor-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.product-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    margin-bottom: 0.75rem;
}

.Beer-card h3,
.Wine-card h3,
.Liquor-card h3 {
   font-size: 1.8rem;
   margin-top: 1rem;
   text-align: center;
   margin-bottom: auto;
}

.Beer-card .price,
.Wine-card .price,
.Liquor-card .price {
    font-weight: bold;
    color: #000;
}

.Beer-card a,
.Wine-card a,
.Liquor-card a {
    color: inherit;
    text-decoration: none;
}

.Beer-card a:hover h3,
.Wine-card a:hover h3,
.Liquor-card a:hover h3 {
    opacity: 0.6;
}



/* ---------------- */

/* Exclusive section */
#exclusive {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

#exclusive h2 {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.exclusive-subtitle {
    color: #ccc;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.exclusive-card {
    position: relative;
    border: 1px solid #fff;
    padding: 1.5rem 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    border-color: #333;
}

.exclusive-card:hover {
    transform: translateY(-4px);
    background-color: #111;
}

.badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: #c9a86a;
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
}

.exclusive-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 1rem;
    filter: grayscale(10%);
}

.exclusive-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.exclusive-card .details {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.exclusive-card .price {
    font-weight: bold;
    font-size: 1.05rem;
}
/* ---------------- */

/* Footer Section */
footer {
    
    background-color: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    color: #fff;
    padding: 2rem 2rem 1.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}

.footer-links a:hover,
.social-links a:hover {
    opacity: 0.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.3rem;
    border-top-color: #2a2a2a;
}

/* ---------------- */

/* Price Filter Section */
.price-filter {
    max-width: 400px;
    margin: 0 auto 2.5rem;
    text-align: center;
    padding: 1rem;
}

.price-filter label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

#price-value {
    font-weight: bold;
}

/* Reset default slider appearance */
#price-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    outline: none;
}

/* Chrome, Safari, Edge */
#price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    transition: transform 0.15s ease;
}

#price-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Firefox */
#price-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease;
}

#price-range::-moz-range-thumb:hover {
    transform: scale(1.15);
}

/* Track color for Firefox */
#price-range::-moz-range-track {
    height: 4px;
    background: #ccc;
    border-radius: 2px;
}
/* ---------------- */

/* Section Header */
.section-header {
    text-align: center;
    margin: 2rem 0;
}

/* Events Section */
#events-hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #000;
}

#events-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
#services h3 {
    padding: 2rem;
}

#events-hero p {
    color: #ccc;
    max-width: 500px;
    margin: 0 auto;
}

#services, #how-it-works, #events-contact {
    padding: 3rem 2rem;
    text-align: center;
}

#services h2, #how-it-works h2, #events-contact h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    
}

.service-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #c9a86a;
}

.service-card h3 {
    color: #c9a86a;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #ccc;
    font-size: 0.9rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c9a86a;
    color: #000;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.step p {
    color: #ccc;
    font-size: 0.9rem;
}

#events-contact {
    background-color: #000;
}

.contact-info {
    font-size: 1.3rem;
    color: #c9a86a;
    font-weight: bold;
    margin-top: 1rem;
}

/* ---------------- */

/* Age pop up */
#age-gate-overlay, #age-gate-denied {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-box {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
}

.age-gate-box h2 {
    color: #eaeaea;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.age-gate-box p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

#age-yes {
    background-color: #c9a86a;
    color: #000;
    font-weight: bold;
}

#age-no {
    background-color: transparent;
    border: 1px solid #666;
    color: #ccc;
}

.age-gate-buttons button:hover {
    opacity: 0.8;
}
/* ---------------- */

/* Media Queries */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    header nav ul {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    header nav ul li a {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }

    .logo img {
        max-width: 200px;
        height: auto;
    }
}