/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F5F5DC;  /* Light beige background for a warm pub feel */
    color: #013220;             /* Dark green text for Irish theme */
}

/* Header Styles */
.header {
    background-color: #013220;
    color: #F5F5DC;
    padding: 10px 0;
    text-align: center;
}

.container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box; /* Make sure padding doesn't affect width */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation Styles */
.nav {
    position: relative;  /* Ensure nav is in the correct stacking context */
    z-index: 999; /* Make sure it's above other elements */
    display: flex;
    justify-content: center;  /* Center links horizontally */
    align-items: center;  /* Align links vertically */
    margin: 10px 0;
}

.nav a {
    color: #F5F5DC;  /* Light beige links */
    text-decoration: none;
    padding: 10px;
    margin: 0 15px;
    font-size: 18px;
}

.nav a:hover {
    color: #DAA520;  /* Gold color on hover */
}

/* Logo Styles */
.logo {
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 150px;                /* Adjust width as needed */
    height: 150px;               /* Adjust height as needed */
    object-fit: cover;           /* Ensure image fills the shape */
    border-radius: 50% / 30%;    /* Makes the logo oval */
    border: 2px solid #DAA520;   /* Gold border for a traditional look */
    background-color: #013220;   /* Dark green background if image has transparency */
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Optional shadow for depth */
}

/* Hero Section */
.hero {
    background-color: #DAA520;
    color: #013220;
    text-align: center;
    padding: 40px 20px;
}

.hero-content h2 {
    font-size: 36px;
}

.hero-content p {
    font-size: 20px;
}

.bar-links {
    margin-top: 20px;
}

.btn {
    background-color: #013220;
    color: #F5F5DC;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background-color: #F5F5DC;
    color: #013220;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #013220;
    color: #F5F5DC;
    text-align: center;
    padding: 10px;
    border-top: 2px solid #DAA520;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner p {
    margin: 0;
    padding: 0 10px;
}

.cookie-link {
    color: #DAA520;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #F5F5DC;
}

.cookie-btn {
    background-color: #DAA520;
    color: #013220;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-btn:hover {
    background-color: #F5F5DC;
    color: #013220;
}

/* About Section */
.about-section {
    padding: 40px 20px;
    background-color: #F5F5DC;
    color: #013220;
    text-align: center;
}

.about-section h2 {
    font-size: 30px;
}

.about-section p {
    font-size: 18px;
}

/* Footer Styles */
.footer {
    background-color: #013220;
    color: #F5F5DC;
    text-align: center;
    padding: 10px;
}

.footer p {
    margin: 0;
}

/* Gallery Styles for Wakefield Images */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 10px 0;
    justify-items: center;
}

.gallery-img {
    width: 100%;
    max-width: 300px;          /* Adjust max width if needed */
    border-radius: 10px;       /* Rounded corners for images */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);  /* Shadow for depth */
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);    /* Slight zoom on hover */
}
