* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: black !important;
    color: rgb(218, 184, 68);
}
/* Ensures the private dining page background is black */
.private-dining-page {
    background-color: black;
    color: white; /* Makes the text white for contrast */
}
.private-dining-page header {
    background-image: none; /* Removes the background image */
    background-color: black; /* Optional: you can set a background color instead */
    width: 100%;
    height: 10vh; /* Adjust the height as necessary */
    text-align: center;
}

header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('images/header.jpg');
    background-size: cover;
    background-position: center 55%;
    color: white;
    text-align: center;
}

header .other{
    background-position: center 55%;
    color: black;
    text-align: center;
}
header .nav-container {
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
}

/* Default: Hide the menu */
header .nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background: black;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
    z-index: 999;
}

/* Show menu when active */
header .nav.active {
    display: flex;
}

/* Ensure menu toggle button is visible */
.menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    margin: 15px;
}

/* Adjust navigation for larger screens */
@media (min-width: 768px) {
    header .nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        justify-content: center;
    }

    .menu-toggle {
        display: none;
    }
}

/* Navigation container */
header .nav-container { 
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
}

/* Navigation links */
header .nav a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    margin: 0 15px;
    transition: background-color 0.3s ease;
}

/* Hover effect for links */
header .nav a:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
}

/* Dropdown styles */
header .more {
    position: relative;
}

header .more:hover .dropdown {
    display: block;
}

header .dropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: black;
    padding: 10px 0;
    width: 150px;
}

header .dropdown a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

header .dropdown a:hover {
    background-color: rgba(0, 0, 0, 0.6);
}




.main-wrap .container {
    padding: 60px 40px;
    max-width: 1600px;
    margin: 0 auto;
}


.about,
.dining-experience,
.private-venue-hire, .raising-the-bar, .cardwell-far-north, .mailing-list,
.our-community, .menu-page{
    font-family: "Crimson Text", serif !important;
    color: #dab844;
    text-align: center;
    padding: 40px 20px;

}

.about h2, .dining-experience h2, .private-venue-hire h2, .raising-the-bar h2, 
.cardwell-far-north h2, .mailing-list h2, .our-community h2, .menu-page h2 {
    font-size: 2.8rem;
    color: #dab844;
    margin-bottom: 20px;
    font-weight: 300;
}

.about p, .dining-experience p, .private-venue-hire p, .raising-the-bar p, 
.cardwell-far-north p, .mailing-list p, .our-community p, .menu-page p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}
.menu-page p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}
.wsite-button .wsite-button-inner {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    background-image: none !important;
    color: #dab844;
    letter-spacing: 0.15em;
    font-family: "Josefin Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    border: 2px solid #dab844;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    margin-bottom: 30px;
    margin-top: 30px;
}

.wsite-button .wsite-button-inner:hover {
    background-color: #dab844;
    color: black;
    border-color: #dab844;
}
.top-section {
    background-color: #000;
    padding: 20px 0;
}


/* Private Dining Carousel */
.private-dining-page .carousel-item {
    height: 600px; /* Set a height for portrait images */
}

.private-dining-page .carousel-inner {
    width: 100%;
    height: 100%;
}

.private-dining-page .carousel-item img {
    width: 100%; /* Ensure the image stretches to fit the width */
    height: auto; /* Adjust height automatically for portrait images */
    object-fit: contain; /* Ensure the full image is shown without cropping */
}

.private-dining-page .carousel-container {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    height: 500px; /* Set the height to match portrait images */
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #dab844; /* Gold arrows */
}

.carousel-control-prev,
.carousel-control-next {
    filter: invert(0); /* Keeps the arrow colors visible */
}

/* Menu Carousel */

.menu-carousel .carousel-inner {
    width: 100%;
    height: 100%;
}

..menu-carousel .carousel-item {
    display: block;  /* Ensures visibility */
    min-height: 300px; /* Set a minimum height */
    width: 100%; 
    text-align: center;
}

.menu-carousel .carousel-item img {
    width: 100%; 
    height: auto; 
    object-fit: contain; /* Ensures no cropping */
    max-height: 600px; /* Prevents overly large images */
}

}
.menu-carousel .carousel-container {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    height: 600px; /* Adjust height as needed for menu images */
}

/* Carousel Control Buttons Styling for Menu Carousel */
.menu-carousel .carousel-control-prev-icon,
.menu-carousel .carousel-control-next-icon {
    background-color: #dab844; /* Gold arrows */
}

.menu-carousel .carousel-control-prev,
.menu-carousel .carousel-control-next {
    filter: invert(0); /* Keeps the arrow colors visible */
}

/* Space between sections */
section {
    margin-bottom: 60px;
}

/* Ensure carousel container does not shift layout */
.carousel-container {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}


/* Default: Images appear in a row */
.images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 576px) {
    .images {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .images img {
        width: 100% !important; /* Force full width */
        max-width: 500px !important; /* Allow images to expand */
        height: auto !important; /* Maintain aspect ratio */
        display: block;
    }
}

.images img {
    width: 23%; /* Make the images smaller to fit in the container */
    height: auto; /* Ensures the height adjusts to the width */
    border-radius: 8px;
    object-fit: cover; /* Ensures the images cover the area without distortion */
    max-height: 300px; /* Optional: limits height for better control */
}
/*Private Dining*/
.private-dining {
    font-family: "Crimson Text", serif !important;
    color: #dab844;
    text-align: center;
    padding: 40px 20px;
}

.private-dining h1 {
    font-size: 3rem;
    color: #dab844;
    margin-bottom: 20px;
}

.private-dining p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.dining-areas {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.dining-area {
    width: 45%;
    text-align: center;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dining-area img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.dining-area h2 {
    font-size: 2rem;
    color: #dab844;
    margin-top: 15px;
}

.dining-area p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.new_hours_container { 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100%;
  height: 100vh; /* Full viewport height */
}
.new_hours_container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Ensures the whole image is visible */
  display: block;
}

/* Footer styles */
.footer {
    background-color: #000000;
    color: #dab844;
    padding: 40px 20px;
    text-align: left;
    font-family: "Crimson Text", serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-main-heading {
    font-size: 2.8rem;
    text-align: center;
    color: #dab844;
    margin-bottom: 30px;
    width: 100%; /* Ensure the main heading spans across the full width */
}

.footer-left, .footer-middle, .footer-right {
    flex: 1; /* Default flex for all columns */
    margin-bottom: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-left {
    flex: 3; /* Make the first column larger */
}

.footer-middle {
    flex: 2; /* Make the second column larger */
}

.footer-right {
    flex: 1; /* Keep the third column smaller */
}

.footer-left h3, .footer-middle h3, .footer-right h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #dab844;
}

.footer-left ul {
    list-style: none;
    padding-left: 0;
}

.footer-left li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between; /* Pushes content to left & right */
    align-items: center;
    padding: 10px 20px;
    background-color: #000;
    color: #dab844;
    font-size: 1rem;
    width: 100%; /* Ensures it spans the full width */
}

.footer-bottom .copyright {
    text-align: left;
}

.footer-bottom .developer {
    text-align: right;
}

.footer-bottom a {
    color: #dab844;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #dab844;
}

.contact-item p {
    font-size: 1.2rem;
    margin: 0;
}

.contact-item a {
    color: #dab844;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-media {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    color: #dab844;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #fff;
}

/* Ensure columns fill the space equally */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px; /* Add space between the columns */
}

/* Responsive Layout for Small Screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
/* Ensure the carousel is responsive for mobile */
@media (max-width: 768px) {
    .menu-carousel .carousel-item img {
        max-height: 400px; /* Adjust height for smaller screens */
    }
}
    .footer-left, .footer-middle, .footer-right {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer {
        text-align: center;
        padding: 20px 10px; /* Reduce padding */
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Reduce spacing */
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%; /* Make full width */
        text-align: center;
    }

    .footer h3 {
        font-size: 1.2rem; /* Reduce heading size */
        margin-bottom: 5px;
        text-align: left;
    }

    .footer p, 
    .footer ul {
        font-size: 1rem; /* Reduce text size */
        line-height: 1.4; /* Adjust line spacing */
        margin-bottom: 5px; /* Reduce space between elements */
    }

    .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .contact-item i {
        font-size: 1.2rem;
    }
}
@media (max-width: 576px) {
    /* Reduce paragraph text size */
    p {
        font-size: 1rem; /* Match footer text */
        line-height: 1.5; /* Adjust spacing for readability */
        margin-bottom: 8px;
    }

    /* Apply same size to sections */
    .about p,
    .dining-experience p,
    .private-venue-hire p,
    .raising-the-bar p,
    .cardwell-far-north p,
    .mailing-list p,
    .our-community p {
        font-size: 1rem; /* Same as footer text */
        line-height: 1.5;
    }

    /* Footer text (already reduced) */
    .footer p {
        font-size: 0.95rem;
    }
}
/* Change link color and make it bold */
.footer a.developer-link {
    color: #dab844 !important; /* Gold color */
    font-weight: bold;
    text-decoration: none; /* Remove underline */
}

/* Ensure the link changes color on hover */
.footer a.developer-link:hover {
    text-decoration: underline; /* Underline on hover */
}
@media (max-width: 576px) {
    /* Ensure the footer container takes full width */
    .footer-container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px; /* Reduce side padding */
        text-align: left !important;
    }

    /* Ensure the contact section uses full width */
    .footer-left {
        width: 100%;
        padding: 0;
        text-align: left !important;
    }

    /* Make contact items align left */
    .contact-item {
        display: flex;
        align-items: center;
        gap: 12px; /* Space between icon and text */
        width: 100%;
        justify-content: flex-start; /* Ensure left alignment */
    }

    /* Ensure icons remain aligned */
    .contact-item i {
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    /* Ensure text stays left-aligned */
    .contact-item p,
    .contact-item span,
    .contact-item a {
        font-size: 1rem;
        flex-grow: 1;
        white-space: normal; /* Allow wrapping */
        text-align: left !important;
    }

    /* Ensure Follow Us section is left-aligned */
    .social-media {
        margin-top: 20px;
        text-align: left !important;
    }
}
@media (max-width: 576px) {
    /* Left-align the entire Contact Us section */
    .contact-section {
        width: 100%;
        text-align: left !important;
        padding-left: 10px; /* Adjust to match Opening Hours */
        margin: 0;
    }

    /* Left-align the "Contact Us" heading */
    .contact-section h3 {
        text-align: left !important;
        margin-bottom: 10px;
    }

    /* Ensure contact details use full width */
    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px; /* Space between icon & text */
        width: 100%;
        justify-content: flex-start; /* Keep everything left */
    }

    /* Keep icons aligned to the left */
    .contact-item i {
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    /* Ensure text stays left-aligned */
    .contact-item p,
    .contact-item span,
    .contact-item a {
        font-size: 1rem;
        flex-grow: 1;
        white-space: normal;
        text-align: left !important;
    }
}
@media (max-width: 576px) {
    /* Ensure Contact Us and Follow Us headings are left-aligned */
    .contact-section h3,
    .social-media h3 {
        text-align: left !important;
        margin-left: 10px; /* Adjust alignment */
        padding-left: 0 !important;
    }
}
    /* Optionally, control the promo-item div if needed */
    .promo-item {
        text-align: center; /* Ensure the image is centered */
        overflow: hidden; /* Prevent layout breaking */
    }
}
@media (max-width: 576px) {
    /* Increase size of social media icons */
    .social-icon {
        font-size: 2rem !important; /* Make icons larger */
        margin: 5px 10px !important; /* Add space between icons */
    }

    /* Add space below the social media section */
    .social-media {
        margin-bottom: 30px !important; /* Adjust space below icons */
    }
}
@media (max-width: 576px) {
    /* Target only the supportLocal.png inside promo-item */
    .promo-item img[src*="supportLocal.png"] {
        max-height: 150px !important; /* Reduce image height */
        width: 100% !important; /* Make it responsive */
        object-fit: contain !important; /* Keep full image visible */
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Optionally, control the promo-item div if needed */
    .promo-item {
        text-align: center; /* Ensure the image is centered */
        overflow: hidden; /* Prevent layout breaking */
    }
}
@media (max-width: 576px) {
    /* Ensure all columns stack in a single column */
    .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }


@media (max-width: 576px) {
    /* Ensure all columns stack in a single column */
    .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    /* Ensure individual columns take full width */
    .col,
    .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        display: block !important;
    }

    /* Adjust text alignment for better readability */
    .dining-area {
        width: 100% !important;
        text-align: left !important;
        padding: 20px !important;
    }

    /* Prevent images from floating, ensure they take full width */
    .dining-area img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 20px !important;
    }

    /* Ensure text doesn't get squeezed */
    .dining-area p {
        width: 100% !important;
        text-align: left !important;
    }

    /* Stack everything properly */
    .dining-areas {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    /* Ensure Indoor and Outdoor areas are full width */
    .indoor-area,
    .outdoor-area {
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
    }
}


  

