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

body {
    font-family: 'Garamond', serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.5;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.age-verification-content {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 50%;
}

.age-verification button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-yes {
    background: #4CAF50;
    color: white;
}

.age-btn-no {
    background: #f44336;
    color: white;
}

/* Main Navigation Styling */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #b09d5d;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Hamburger menu animation when active */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}    

/* Notification Banner for contact */
.slide-notification {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
.header-row {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding:29% 12%;
}
.hero-content p{
    font-size: 20px;
} 
.hero-content h1{
    font-size: 40px;
} 


.alcohol-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.alcohol-heading.active {
    color: gold;
}

/* products*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-carousel {
    display: none; /* Initially hide all carousels */
    position: relative; /* For positioning nav buttons */
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 5rem;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image img {
    width: auto;
    height: 400px; /* Set a fixed height for images */
}

.carousel-nav {
    position: absolute; 
    top: 50%;
    width: calc(100% - 10%);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%); 
}

.nav-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    color: black;
    cursor: pointer; /* Change cursor to pointer */
    border:none; 
}

.nav-button:hover {
  background-color: var(--accent-color);
  color:white; 
  transform: scale(1.1); 
  transition:.3s; 
}
.product-details{
    padding: 1rem;
    padding-top: 50px;
}
.product-details p{
    text-align: justify;
    padding-top: 30px;
}

/* About us page*/
.parallax-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: url('../main/aboutusbg.png') ;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.intro-text {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}


/* Our Heritage */
.company-story {
    padding: 4rem 2rem;
    background: #1a1a1a;
    position: relative;
    text-align: justify;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    opacity: 0;
    transform: translateX(-30px);
}

.story-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* timeline*/
.timeline {
    max-width: 1200px;
    margin:  auto;
    margin-left: 70px;
}

.timeline-item {
    display: flex;
    flex-direction: row;
    position: relative;
    padding: 2rem;
    border-left: 2px solid #c4a747;
    margin-left: 20px;
    margin-bottom: 2rem;
    gap: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 32px;
    width: 14px;
    height: 14px;
    background: #c4a747;
    border-radius: 50%;
}
.timeline-item img {
    width: 70%;
    height: auto;
    object-fit: cover;
    border-radius:8px;
}
.timeline-item p{
    padding-left: 10px;
    width: auto;
    text-align: justify;
    align-items: center;
}

.timeline-item h3{
    padding-left: 100px;
}

/* Our Blog */
.team-section {
    padding: 2rem;
    background: #2a2a2a;

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

.team-member {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.member-photo {
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 20%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-photo:hover img {
    transform: scale(1.1);
}


/* Footer Section */
footer {
    background: #2a2a2a;
    padding: 2rem;
    text-align: center;
    background-image: url('../main/contactusbg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(42, 42, 42, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #c4a747;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #c4a747;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    color: #c4a747;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid rgba(255,255,255,0.1);
    background-color: rgba(255,255,255,0.05);
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c4a747;
    box-shadow: 0 0 10px rgba(196, 167, 71, 0.3);
}

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

.submit-button {
    background-color: #c4a747;
    color: black;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #dbc273;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

footer iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px;
    transition: filter 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #c4a747;
}

.detail {
    flex-grow: 1;
}

.detail h4 {
    margin: 0 0 0.3rem 0;
    color: #c4a747;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.detail p {
    margin: 0;
    color: white;
    font-size: 1rem;
    line-height: 1.4;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c4a747;
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Animation for smooth transitions */
@keyframes slideIn {
    from { right: -200px; }
    to { right: 0; }
}

@keyframes slideOut {
    from { right: 0; }
    to { right: -200px; }
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
} 

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width:1000px) {
    .timeline-item{
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    /* Header Section */
    #mainNav {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    /* Center and scale down logo */
    .logo {
        padding: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        height: 40px; /* Reduce logo size for mobile */
    }

    /* Navigation Links for Mobile */
    .nav-links {
        display: none; /* Hide links initially */
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    /* When active, show links in mobile style */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 16px;
        padding: 10px 20px;
        width: 100%;
        text-align: left;
        color: black;
    }

    /* Menu toggle button */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: black;
        cursor: pointer;
        align-self: flex-end;
    }

    /* Hero Section */
    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
    .header-row {
        flex-direction: row;
        gap: 1rem;
    }


    /* Product Section */
    .container {
        padding: 1rem 0;
    }

    .product-item {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .product-image {
        width: 100%;
        margin: 0 auto;
    }

    .product-image img {
        transform: translateX(40%);
        margin: 0 auto;
        width: 55%;
        height: 450px;
    }

    /* Timeline Section */
    .timeline {
        margin: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        margin-left: 20px;
        border-left: 2px solid #c4a747;
    }

    .timeline-item img {
        width: 100%;
        height: auto;
    }

    .timeline-item h3, .timeline-item p {
        padding-left: 0;
    }

    /* About Us Section */
    .parallax-container {
        padding: 2rem 1rem;
        text-align: center;
    }

    .intro-text h1 {
        font-size: 30px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text, .story-image {
        padding: 1rem;
        text-align: center;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member {
        width: 100%;
        margin: 0 auto;
    }

    .member-photo {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
    }

    footer iframe {
        height: 300px;
    }

    .form-section{
        width: 100%;
        margin-left: 0;
        padding: 1rem;
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
    }
}

@media (max-width:480px){
    .age-verification-content {
        max-width: 80%;
    }
    .age-verification button{
        margin: 2.5%;
    }
    .nav-container{
        padding: 0;
    }
    .logo {
        padding: 0;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .logo img {
        height: 40px;
    }
    .hero{
        height: auto;
    }
    .hero-content{
        padding-top:40%;
    }
    .header-row{
        gap: 1.5rem;
    }
    .product-image img {
        transform: none;
        width: 100%;
        height: auto;
    }
    .product-item{
        padding: 0;
    }
    .product-details{
        padding-top: 0;
    }
    .carousel-nav{
        width: 100%;
    }
    .alcohol-heading{
        font-size: 1rem;
    }
    .parallax-container{
        height: auto;
    }
    .story-text,.story-image{
        padding: 0;
    }
    .timeline-item{
        padding: 1rem;
        margin-left: 0;
    }
    .contact-form{
        margin-top:0;
    }
    .detail p{
        font-size: 13px;
    }
    footer iframe {
        padding: 0;
        width: 100%;
        height: 250px;
    }
    footer {
        padding: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        background: rgba(42, 42, 42, 0.3);
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-details {
        gap: 1rem;
        padding: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .detail h4 {
        font-size: 0.7rem;
    }

    .detail p {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1rem;
        padding-top: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-label {
        font-size: 0.7rem;
    }

    .submit-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
@media (max-width:320px) {
    .age-verification-content{
        height: 200px;
    }
    .age-verification-content h2{
        font-size: 20px;
    }
    .age-verification-content p{
        font-size: 16px;
    }
    .age-verification button {
        padding: 10px;
    }
    .logo img {
        height: 35px;
    }
    .hero-content{
        padding-top:50%;
    }
    .team-section{
        padding: 1rem 0;
    }
    footer {
        padding: 0.5rem;
    }

    .contact-content {
        border-radius: 10px;
    }

    .contact-card {
        padding: 0.5rem;
    }

    .contact-details {
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .contact-item {
        padding: 0.5rem;
    }

    .icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .detail h4 {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
    }

    .detail p {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 0.5rem;
        padding-top: 0.25rem;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .contact-form {
        gap: 0.5rem;
    }

    .form-label {
        font-size: 0.6rem;
        margin-bottom: 0.25rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 8px;
        font-size: 0.8rem;
    }

    .submit-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}
@media (max-width:270px) {
    .age-verification-content {
        padding: 1rem;
    }
}