/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #654321;
    --accent-color: #FFD700;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #F5F5F5;
    --bg-dark: #3E2723;
    --border-color: #A0522D;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.nav-brand h1 a {
    color: var(--text-light);
    text-decoration: none;
}

.nav-brand .location {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Logo Styling */
.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    vertical-align: middle;
    display: block;
}

.hero-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

.logo-hero {
    height: 150px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    transition: transform 0.3s;
    display: block;
    margin: 0 auto;
}

.logo-hero:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px; /* Minimum height for better image display */
    height: auto; /* Auto height to accommodate full image */
    width: 100%; /* Full width */
    max-width: 100%;
    /* Background Image - Your event photo will display here */
    background-image: url('../images/photorealistic-wedding-venue-with-intricate-decor-ornaments.jpg');
    /* Fallback - if image not found, uses brown gradient */
    /* To use a different image: change the filename above */
    background-size: cover; /* Fills entire area, maintains aspect ratio */
    background-position: center top; /* Shows top portion of image */
    background-repeat: no-repeat;
    background-attachment: scroll; /* Changed from fixed for better image display */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    /* Fallback gradient color - only shows if image doesn't load */
    background-color: var(--primary-color);
    /* Ensure image is on top */
    background-blend-mode: normal;
    padding: 4rem 2rem; /* Added padding for proper spacing */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Minimal overlay - your beautiful event image shows clearly */
    /* Current: Very light overlay (5-10% opacity) - perfect for elegant event photos */
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(62, 39, 35, 0.1) 100%);
    
    /* OPTION: To completely remove color overlay - uncomment below: */
    /* background: transparent; */
    
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Light dark overlay - enhances text readability while showing event image clearly */
    /* Current: 12% dark overlay - elegant event photos show beautifully */
    background: rgba(0,0,0,0.12);
    
    /* OPTION: To remove dark overlay completely - change to: */
    /* background: transparent; */
    
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--text-light);
    font-weight: 700;
}

.hero-buttons .btn-secondary:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    border-color: var(--accent-color);
}

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

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about {
    background: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Services Preview */
.services-preview {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--accent-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Service Detail */
.service-detail {
    padding: 4rem 0;
}

.service-detail.alt-bg {
    background: var(--bg-light);
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.service-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-list h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.check-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    margin-right: 1rem;
    font-weight: bold;
}

.feature-list strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-list p {
    color: #666;
    margin-top: 0.5rem;
    margin-left: 2.5rem;
}

.service-image {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

.menu-content {
    display: block; /* override the default 2-column grid for this section */
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr; /* mobile default */
    gap: 1.5rem;
    align-items: start; /* prevent empty cards from stretching to tallest height */
}

@media (min-width: 640px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr); /* side-by-side on tablet/desktop */
    }
}

@media (min-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 across on large screens */
    }
}

@media (min-width: 1280px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 across on very wide screens */
    }
}

.menu-category {
    background: var(--text-light);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.25rem 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.menu-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: capitalize;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

/* Accordion styles */
.menu-accordion {
    border: none;
    display: block;
}

.menu-accordion[open] .menu-accordion__chevron {
    transform: rotate(180deg);
}

.menu-accordion__header {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-accordion__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-accordion__title {
    font-size: 1.15rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.35rem;
    width: 100%;
}

.menu-accordion__count {
    display: inline-block;
    min-width: 28px;
    padding: 0.15rem 0.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}

.menu-accordion__chevron {
    transition: transform 0.2s ease;
    margin-left: 0.75rem;
    color: var(--primary-color);
}

.menu-accordion__content {
    margin-top: 0.75rem;
    max-height: 420px;            /* keep card from becoming too tall */
    overflow: auto;               /* scroll items inside instead of stretching grid */
    padding-right: 4px;           /* space for scrollbar */
}

/* Chips list for menu items */
.chips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.chip {
    display: inline-block;
    padding: 0.45rem 0.75rem;
    background: #f6f6f6;
    border: 1px solid #eee;
    border-radius: 999px;
    font-size: 0.95rem;
    color: #444;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.chip:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

@media (min-width: 1200px) {
    .chip { font-size: 0.93rem; }
}

/* Menu search */
.menu-search {
    margin-bottom: 1rem;
}
.menu-search input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.menu-search input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255,215,0,0.2);
}

.image-placeholder,
.image-placeholder-large {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    font-size: 4rem;
    text-align: center;
}

.image-placeholder-large {
    height: 400px;
    font-size: 5rem;
    flex-direction: column;
}

/* Event Types */
.event-types {
    background: var(--text-light);
    padding: 4rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.event-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.event-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.event-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--text-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.contact-card-large h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-card-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    min-width: 50px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.contact-item p {
    margin: 0.3rem 0;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.social-links h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Contact Page Social Media Links */
.contact-social-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color);
}

.contact-social-links h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-social-icons {
    display: flex;
    gap: 1rem;
}

.contact-social-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--accent-color);
    font-weight: 700;
    text-align: center;
}

.contact-social-btn svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-social-btn span {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.contact-social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    border-color: var(--text-light);
}

.contact-social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.contact-social-btn.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    border-color: #e1306c;
}

.contact-social-btn:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.map-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.map-placeholder {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-note {
    color: #999;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Gallery */
.gallery-section {
    padding: 4rem 0;
    background: var(--text-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 350px;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-light);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/* Event Images Section (Home Page) */
.event-images {
    padding: 4rem 0;
    background: var(--bg-light);
}

.home-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.home-image-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--text-light);
    height: 350px;
}

.home-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.home-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.home-image-card:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), transparent);
    color: var(--text-light);
    padding: 1.5rem;
    transform: translateY(0);
    transition: all 0.3s;
}

.home-image-card:hover .image-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7));
}

.image-overlay h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.image-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.view-gallery-btn {
    text-align: center;
    margin-top: 2rem;
}

.view-gallery-btn .btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.view-gallery-btn .btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-icon span {
    font-weight: 500;
    font-size: 1rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    color: white;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        background-attachment: scroll;
        min-height: 450px; /* Minimum height for mobile */
        height: auto; /* Auto height for full image display */
        width: 100%; /* Full width on mobile */
        background-size: cover; /* Fills entire area properly */
        background-position: center top; /* Shows top portion with decorations */
        padding: 3rem 1.5rem; /* Adjusted padding for mobile */
    }

    .logo-img {
        height: 45px;
        max-width: 180px;
    }

    .logo-hero {
        height: 100px;
        max-width: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-content,
    .service-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .events-grid,
    .gallery-grid,
    .home-images-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}
