/* ============================ General Body Styles ============================ */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    transition: background-color 0.3s ease;
}

/* ============================ Hero Section ============================ */
/* ============================ Hero Section ============================ */
.hero {
    background-image: url('images/bg4.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Overlay effect for better text contrast */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);  /* Dark overlay */
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.hero h1 {
    font-size: 4em;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.6em;
    font-family: 'Lora', serif;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.4em;
    background-color: #9c7d3a;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    letter-spacing: 2px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #7c602a;
}

/* ============================ Media Queries for Responsiveness ============================ */

/* Tablet (between 600px and 1024px) */
@media screen and (max-width: 1024px) {
    .hero {
        height: 80vh; /* Slightly reduce height */
        padding: 20px;
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 3.5em; /* Reduce font size for smaller screens */
    }

    .hero p {
        font-size: 1.4em; /* Adjust paragraph font size */
    }

    .cta-button {
        font-size: 1.2em;
        padding: 12px 25px;
    }
}

/* Mobile (below 600px) */
@media screen and (max-width: 600px) {
    .hero {
        height: 60vh; /* Further reduce height */
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.5em; /* Further reduce font size */
    }

    .hero p {
        font-size: 1.2em; /* Adjust paragraph font size */
        margin-bottom: 20px; /* Reduce bottom margin */
    }

    .cta-button {
        font-size: 1.1em;
        padding: 10px 20px;
    }
}


/*//////////////////////////////// Slide Styles ///////////////////////////////// */
/* Slide Section Styles */
.our-story-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color:   #ffffff; /* Black background */
    color: black; /* White text */
}

.slideshow-container {
    flex: 1;
    margin-right: 20px;
}

#slideshow {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px; /* Set a fixed height for the slideshow container */
    overflow: hidden;
    border: 2px solid gold; /* Gold border */
    border-radius: 10px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%; /* Ensure the slide takes the full height of the container */
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container while maintaining aspect ratio */
    border-radius: 10px;
}

.text-container {
    flex: 1;
    max-width: 500px;
}

.text-container h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: gold; /* Gold for headings */
}

.text-container p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.text-container button {
    padding: 10px 20px;
    font-size: 1em;
    color: #000; /* Black text */
    background-color: gold; /* Gold background */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.text-container button:hover {
    background-color: #ffd700; /* Lighter gold */
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: gold; /* Gold arrows */
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(255, 215, 0, 0.8)
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 215, 0, 0.8); /* Semi-transparent gold */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .our-story-section {
        flex-direction: column;
    }

    .slideshow-container {
        margin-right: 0;
        margin-bottom: 20px;
    }

    #slideshow {
        height: 300px; /* Adjust slideshow height for smaller screens */
    }

    .text-container {
        text-align: center;
    }

    .text-container h2 {
        font-size: 1.8em;
    }

    .text-container p {
        font-size: 1em;
    }

    .text-container button {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    #slideshow {
        height: 250px; /* Further adjust for smaller screens */
    }

    .text-container h2 {
        font-size: 1.5em;
    }

    .text-container p {
        font-size: 0.9em;
    }
}
/* //////////////////////////////////////////////////////end of slide Styles/////////////////////////// */

/*/////////////////////////////////////////Cocktaile Slide //////////////////////// */
.cocktail-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #171616; /* Black background */
    color: #fff; /* White text */
}

.cocktail-slideshow-container {
    flex: 1;
    margin-right: 20px;
}

#cocktail-slideshow {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px; /* Set a fixed height for the slideshow container */
    overflow: hidden;
    border: 2px solid  #d4af37; /* Gold border */
    border-radius: 10px;
}

.cocktail-slide {
    display: none;
    width: 100%;
    height: 100%; /* Ensure the slide takes the full height of the container */
}

.cocktail-slide.active {
    display: block;
}

.cocktail-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container while maintaining aspect ratio */
    border-radius: 10px;
}

.cocktail-text-container {
    flex: 1;
    max-width: 500px;
}

.cocktail-text-container h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color:  #d4af37; /* Gold for headings */
}

.cocktail-text-container p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cocktail-text-container button {
    padding: 10px 20px;
    font-size: 1em;
    color: #000; /* Black text */
    background-color: #d4af37; /* Gold background */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cocktail-text-container button:hover {
    background-color:  #d4af37; /* Lighter gold */
}

.cocktail-prev, .cocktail-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #d4af37; /* Gold arrows */
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.cocktail-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.cocktail-prev:hover, .cocktail-next:hover {
    background-color: rgba(255, 215, 0, 0.8); /* Semi-transparent gold */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cocktail-section {
        flex-direction: column;
    }

    .cocktail-slideshow-container {
        margin-right: 0;
        margin-bottom: 20px;
    }

    #cocktail-slideshow {
        height: 300px; /* Adjust slideshow height for smaller screens */
    }

    .cocktail-text-container {
        text-align: center;
    }

    .cocktail-text-container h2 {
        font-size: 1.8em;
    }

    .cocktail-text-container p {
        font-size: 1em;
    }

    .cocktail-text-container button {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    #cocktail-slideshow {
        height: 250px; /* Further adjust for smaller screens */
    }

    .cocktail-text-container h2 {
        font-size: 1.5em;
    }

    .cocktail-text-container p {
        font-size: 0.9em;
    }
}
/*/////////////////////////////////////////end Of Cocktaile Slide /////// */

/*/////////////////////////////////////////////// Mini Story Section */
/* Mini Story Section */
.mini-story {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #171616; /* Black background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff; /* White text */
    gap: 20px;
}

/* Story Content */
.mini-story-content {
    flex: 1;
    max-width: 100%; /* Default for small screens */
    padding: 15px;
}
.mini-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37; /* Gold */
    margin-bottom: 10px;
}
.mini-description {
    font-size: 1rem;
    color: #f1f1f1; /* Light gray text */
    line-height: 1.8;
    margin-bottom: 20px;
}
.mini-view-more {
    background-color: #d4af37; /* Gold */
    color: #000; /* Black text */
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.mini-view-more:hover {
    background-color: #000; /* Black background */
    color: #d4af37; /* Gold text */
    border: 1px solid #d4af37;
}

/* Mini Gallery */
.mini-gallery {
    flex: 1;
    max-width: 100%; /* Default for small screens */
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.mini-gallery img {
    width: calc(33.333% - 10px); /* Three images per row */
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #d4af37; /* Gold border */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mini-gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mini-story {
        flex-direction: column; /* Stack elements */
    }
    .mini-story-content {
        text-align: center;
    }
    .mini-gallery img {
        width: 100%; /* Full width for smaller screens */
    }
}



/* ============================ Pub Section ============================ */
/* ============================ Pub Section ============================ */
.pub {
    background-color: #ffffff;
    padding: 60px 0;
}

.pub h2 {
    font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.pub p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

.pub img {
    max-width: 100%;
    border-radius: 10px;
}

/* Zoom-in and fade-in animation */
@keyframes zoomInFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8); /* Start with 80% of original size */
    }
    100% {
        opacity: 1;
        transform: scale(1); /* End with 100% (original size) */
    }
}

/* Apply zoom-in and fade-in animation to elements */
.zoom-in-fade-in {
    animation: zoomInFadeIn 1s ease-out forwards;
}

/* Hover effect on desktop */
@media (min-width: 768px) {
    .zoom-element:hover {
        animation: zoomInFadeIn 1s ease-out forwards;
        cursor: pointer;
    }
}

/* Ensuring the layout is responsive */
@media (max-width: 767px) {
    .pub h2 {
        font-size: 2em;
        text-align: center;
    }

    .pub p {
        font-size: 1em;
        text-align: center;
    }

    .pub .row {
        text-align: center;
    }

    .pub .col-md-6 {
        margin-bottom: 30px;
    }

    /* Change image position to be on top for mobile */
    .pub .col-md-6:nth-child(1) {
        order: 2;
    }

    .pub .col-md-6:nth-child(2) {
        order: 1;
    }

    .pub img {
        margin-top: 20px;
    }
}


/* ============================ Cocktail Section ============================ */
.cocktail {
    background-color: #80868b;
    padding: 60px 0;
}

.cocktail-title {
    font-size: 2.5em;
    font-family: 'Montserrat', sans-serif;
    color: whitesmoke;
    margin-bottom: 20px;
}

.cocktail-description {
    font-size: 1.2em;
    color: whitesmoke;
    line-height: 1.6;
}

.cocktail-img {
    border-radius: 10px;
}


/* Responsive Layout: Stack the image on top for mobile */
@media (max-width: 767px) {
    .cocktail .row {
        text-align: center;
    }

    .cocktail .col-md-6:nth-child(1) {
        order: 2;
    }

    .cocktail .col-md-6:nth-child(2) {
        order: 1;
    }

    .cocktail-img {
        margin-top: 20px;
    }
}

/* ============================ Contact Section ============================ */
/* General Contact Section Styles */
.contact-card {
    background-color: #f8f9fa;
    border: 1.5px solid #9c7d3a;
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
  
  /* Center text inside the contact card */
  .contact-card h4, .contact-card p {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .contact-card h4 {
    font-weight: bold;
    font-size: 1.25rem;
    color: #7c602a;
  }
  
  .contact-card p {
    font-size: 0.95rem;
    color: #6c757d;
  }
  
  .contact-card a {
    color: #9c7d3a;
    text-decoration: none;
  }
  
  .contact-card a:hover {
    color: #7c602a;
  }
  
  /* Form-specific styles */
  .contact-form {
    border: 1.5px solid #9c7d3a;
    font-size: 1rem;
    color: #9c7d3a;
    padding: 0.75rem 1rem;
    max-width: 100%;
  }
  
  .contact-form:focus {
    border-color: #7c602a;
    outline: none;
  }
  
  .contact-label {
    display: block;
    font-size: 1rem;
    color: #9c7d3a;
    margin-bottom: 0.5rem;
  }
  
  /* Disable textarea resizing */
  textarea.contact-form {
    resize: none;
  }
  
  /*
  


/* ============================ Testimonials Section ============================ */
.testimonials-section {
    padding: 60px 20px;
    background-color: #f2f2f2;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5em;
    color: #9c7d3a;
    margin-bottom: 30px;
}

.testimonials {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial {
    max-width: 30%;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    text-align: left;
}

.testimonial p {
    font-size: 1.2em;
    color: #555;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #9c7d3a;
}


