/* Centenary Field Hall Hire - Main Stylesheet */

:root {
    --primary-blue: #003e7e;
    --light-blue: #4a90e2;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --text-gray: #666666;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle:active {
    transform: scale(0.95);
}

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

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a:focus {
    color: var(--light-blue);
    outline: none;
}

nav a:focus-visible {
    outline: 2px solid var(--light-blue);
    outline-offset: 4px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Content Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section {
    margin-bottom: 4rem;
}

/* Event Page Hero Images */
.event-hero {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.event-hero img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.event-hero img:hover {
    transform: scale(1.02);
}

.section h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section h3 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), 
                url('/images/gallery/21-venue.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), 
                url('/images/gallery/21-venue.png');
    background-size: cover;
    background-position: center;
}

/* Event Type Feature Boxes - Specific Images */
.feature-weddings {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/10-wedding-setup.jpg') !important;
}
.feature-weddings:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/10-wedding-setup.jpg') !important;
}

.feature-parties {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/03-60th-birthday.jpg') !important;
}
.feature-parties:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/03-60th-birthday.jpg') !important;
}

.feature-babyshowers {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/01-baby-shower-blue.jpg') !important;
}
.feature-babyshowers:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/01-baby-shower-blue.jpg') !important;
}

.feature-kids {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/09-kids-party.jpg') !important;
}
.feature-kids:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/09-kids-party.jpg') !important;
}

.feature-wakes {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/05-booth-seating.jpg') !important;
}
.feature-wakes:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/05-booth-seating.jpg') !important;
}

.feature-mehndi {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/37-mehndi-1.jpg') !important;
}
.feature-mehndi:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/37-mehndi-1.jpg') !important;
}

/* Venue Features - Specific Images */
.feature-bar {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/13-champagne-service.jpg') !important;
}
.feature-bar:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/13-champagne-service.jpg') !important;
}

.feature-catering {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/02-buffet-food.jpg') !important;
}
.feature-catering:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/02-buffet-food.jpg') !important;
}

.feature-av {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/24-venue.jpg') !important;
}
.feature-av:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/24-venue.jpg') !important;
}

.feature-parking {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/26-venue.jpg') !important;
}
.feature-parking:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/26-venue.jpg') !important;
}

.feature-accessible {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/25-venue.jpg') !important;
}
.feature-accessible:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/25-venue.jpg') !important;
}

.feature-outdoor {
    background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/27-venue.jpg') !important;
}
.feature-outdoor:hover {
    background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/27-venue.jpg') !important;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
}

.feature p {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--light-gray);
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    filter: brightness(1.05);
}

/* Calendar */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.day-card {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.day-card.available {
    border-left-color: #27ae60;
    background: #e8f8f5;
}

.day-card.booked {
    border-left-color: #e74c3c;
    background: #fdeaea;
}

.day-card .date {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.day-card .status {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Contact Box */
.contact-box {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.contact-box h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-methods a {
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: all 0.3s;
}

.contact-methods a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Show hamburger menu button */
    .menu-toggle {
        display: block;
    }
    
    /* Hide nav by default on mobile */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        z-index: 999;
    }
    
    /* Show nav when menu is open */
    nav.open {
        max-height: 600px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
    }
    
    nav li {
        border-bottom: 1px solid var(--light-gray);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
        display: block;
        text-align: left;
        transition: all 0.2s ease;
    }
    
    nav a:hover,
    nav a:active {
        background: var(--light-gray);
        padding-left: 2rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-methods a {
        font-size: 0.95rem;
        padding: 0.875rem;
    }
}

/* Feature box text colors for blue overlay */
.feature h3 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature p {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Weddings Page Feature Boxes */
.weddings-venue { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/10-wedding-setup.jpg') !important; }
.weddings-venue:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/10-wedding-setup.jpg') !important; }

.weddings-capacity { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/11-wedding-reception.jpg') !important; }
.weddings-capacity:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/11-wedding-reception.jpg') !important; }

.weddings-bar { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/13-champagne-service.jpg') !important; }
.weddings-bar:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/13-champagne-service.jpg') !important; }

.weddings-sound { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/16-red-wedding.jpg') !important; }
.weddings-sound:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/16-red-wedding.jpg') !important; }

.weddings-catering { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/18-wedding-breakfast.jpg') !important; }
.weddings-catering:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/18-wedding-breakfast.jpg') !important; }

.weddings-parking { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/26-venue.jpg') !important; }
.weddings-parking:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/26-venue.jpg') !important; }

/* Parties Page Feature Boxes */
.parties-venue { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/03-60th-birthday.jpg') !important; }
.parties-venue:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/03-60th-birthday.jpg') !important; }

.parties-capacity { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/05-booth-seating.jpg') !important; }
.parties-capacity:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/05-booth-seating.jpg') !important; }

.parties-bar { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/20-champagne-strawberries.jpg') !important; }
.parties-bar:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/20-champagne-strawberries.jpg') !important; }

.parties-catering { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/12-buffet-catering.jpg') !important; }
.parties-catering:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/12-buffet-catering.jpg') !important; }

.parties-music { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/24-venue.jpg') !important; }
.parties-music:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/24-venue.jpg') !important; }

.parties-parking { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/27-venue.jpg') !important; }
.parties-parking:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/27-venue.jpg') !important; }

/* Kids Parties Page Feature Boxes */
.kids-safe { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/09-kids-party.jpg') !important; }
.kids-safe:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/09-kids-party.jpg') !important; }

.kids-outdoor { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/27-venue.jpg') !important; }
.kids-outdoor:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/27-venue.jpg') !important; }

.kids-entertainment { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/08-halloween-pumpkins.jpg') !important; }
.kids-entertainment:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/08-halloween-pumpkins.jpg') !important; }

.kids-catering { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/02-buffet-food.jpg') !important; }
.kids-catering:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/02-buffet-food.jpg') !important; }

.kids-capacity { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/25-venue.jpg') !important; }
.kids-capacity:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/25-venue.jpg') !important; }

.kids-parking { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/26-venue.jpg') !important; }
.kids-parking:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/26-venue.jpg') !important; }

/* Wakes Page Feature Boxes */
.wakes-space { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/05-booth-seating.jpg') !important; }
.wakes-space:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/05-booth-seating.jpg') !important; }

.wakes-capacity { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/06-formal-dining.jpg') !important; }
.wakes-capacity:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/06-formal-dining.jpg') !important; }

.wakes-catering { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/14-buffet-asian.jpg') !important; }
.wakes-catering:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/14-buffet-asian.jpg') !important; }

.wakes-bar { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/13-champagne-service.jpg') !important; }
.wakes-bar:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/13-champagne-service.jpg') !important; }

.wakes-accessible { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/25-venue.jpg') !important; }
.wakes-accessible:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/25-venue.jpg') !important; }

.wakes-parking { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/27-venue.jpg') !important; }
.wakes-parking:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/27-venue.jpg') !important; }

/* Mehndi Page Feature Boxes */
.mehndi-space { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/37-mehndi-1.jpg') !important; }
.mehndi-space:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/37-mehndi-1.jpg') !important; }

.mehndi-decor { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/06-formal-dining.jpg') !important; }
.mehndi-decor:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/06-formal-dining.jpg') !important; }

.mehndi-capacity { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/17-formal-setup.jpg') !important; }
.mehndi-capacity:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/17-formal-setup.jpg') !important; }

.mehndi-catering { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/14-buffet-asian.jpg') !important; }
.mehndi-catering:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/14-buffet-asian.jpg') !important; }

.mehndi-music { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/24-venue.jpg') !important; }
.mehndi-music:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/24-venue.jpg') !important; }

.mehndi-parking { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/26-venue.jpg') !important; }
.mehndi-parking:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/26-venue.jpg') !important; }

/* Location Hire Page Feature Boxes */
.location-parking { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/24-venue.jpg') !important; }
.location-parking:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/24-venue.jpg') !important; }

.location-crew { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/05-booth-seating.jpg') !important; }
.location-crew:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/05-booth-seating.jpg') !important; }

.location-access { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/27-venue.jpg') !important; }
.location-access:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/27-venue.jpg') !important; }

.location-storage { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/25-venue.jpg') !important; }
.location-storage:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/25-venue.jpg') !important; }

.location-power { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/26-venue.jpg') !important; }
.location-power:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/26-venue.jpg') !important; }

.location-knowledge { background-image: linear-gradient(rgba(0, 62, 126, 0.50), rgba(0, 62, 126, 0.50)), url('/images/gallery/21-venue.png') !important; }
.location-knowledge:hover { background-image: linear-gradient(rgba(0, 62, 126, 0.40), rgba(0, 62, 126, 0.40)), url('/images/gallery/21-venue.png') !important; }
