/* Base styles (mobile first) */
:root {
    --primary-color: #2C5F2D;
    --secondary-color: #4f7e0e;
    --text-color: #333;
    --light-color: #fff;
    --dark-color: #1a1a1a;
    --container-padding: 1rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    top: 0 !important;
    position: static !important;
}

.container {
    width: 100%;
    padding: var(--container-padding);
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/field.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem); /* Increased from 2rem to 2.5rem for smaller screens */
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

/* Sections */
section {
    padding: 4rem 0;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Center align all headings */
h1, h2, h3 {
    text-align: center;
}

/* Address Card */
.address-card {
    background: var(--light-color);
    padding: 2rem 2rem 2rem 4rem; /* Increased left padding for icon */
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.8;
}

.address-card i.fa-map-marker-alt {
    font-size: 2.5rem;
    margin-right: 40px;
    color: var(--primary-color);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.address-card br {
    display: none; /* Remove line break */
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Enhanced Map Container Styles */
.map-section {
    background: var(--light-color);
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.map-container iframe {
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Credit Section */
.credit-section {
    background: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
    padding: 1rem;
}

.credit-section a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: var(--container-padding);
    }

    section {
        padding: 2rem 0;
    }

    .map-container {
        padding: 10px;
    }

    .map-container iframe {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }

    .gallery-grid img {
        height: 150px;
    }

    .address-card {
        padding: 2.5rem 1rem 1.5rem;
        text-align: center;
    }

    .address-card i.fa-map-marker-alt {
        position: absolute;
        left: 50%;
        top: 1rem;
        transform: translateX(-50%);
        margin-bottom: 1rem;
    }

    .address-card br {
        display: block; /* Show line break on mobile */
    }
}

/* Remove all translation-related styles */

/* Share Buttons Styles */
.share-container {
    text-align: center;
    margin-top: 2rem;
}

.share-container h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 9999px; /* Maximum round corners */
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 140px; /* Set minimum width */
    margin: 0.5rem;
}

.share-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.share-btn.whatsapp {
    background-color: #25D366;
    
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Enhanced Weather Section Styles */
.weather-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f5ff 100%);
    padding: 3rem 0;
}

.weather-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.weather-icon {
    position: relative;
    /* removed animation: float 3s ease-in-out infinite; */
}

.weather-icon img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    /* removed any animation properties */
}

.weather-info {
    text-align: left;
    animation: fadeIn 1s ease-out;
}

.weather-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.weather-info p {
    margin: 0.7rem 0;
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0;
    animation: slideUp 0.5s ease-out forwards;
}

.weather-info p:nth-child(2) { animation-delay: 0.2s; }
.weather-info p:nth-child(3) { animation-delay: 0.4s; }
.weather-info p:nth-child(4) { animation-delay: 0.6s; }

/* Remove the float keyframes since we're not using it anymore */
/* @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
} */

/* Weather Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Weather Mobile Responsive */
@media (max-width: 768px) {
    .weather-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }

    .weather-info {
        text-align: center;
    }

    .weather-info h3 {
        text-align: center;
        font-size: 2rem;
    }

    .weather-icon img {
        width: 100px;
        height: 100px;
    }
}

/* Enhanced Media Queries */
/* Tablet */
@media (min-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .container {
        width: 90%;
    }

    .weather-card {
        flex-direction: row;
        padding: 2rem;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    :root {
        --container-padding: 2rem;
    }
    
    .container {
        max-width: 1200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: var(--mobile-padding);
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem); /* Adjusted for better mobile visibility */
        padding: 0 1rem;
    }

    .weather-card {
        flex-direction: column;
        text-align: center;
        padding: var(--mobile-padding);
        gap: 1rem;
    }

    .weather-info {
        text-align: center;
    }

    .weather-info h3 {
        text-align: center;
        font-size: 1.5rem;
    }

    .share-buttons {
        gap: 1rem; /* Keep consistent gap */
        flex-direction: row; /* Keep horizontal layout */
    }

    .share-btn {
        width: auto; /* Remove 100% width */
        min-width: 140px; /* Keep consistent width */
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }

    .gallery-grid img {
        height: 150px;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .hero h1 {
        font-size: clamp(1.2rem, 3vw, 2rem);
    }

    .weather-icon img {
        width: 80px;
        height: 80px;
    }

    .address-card {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Add touch optimization for mobile */
@media (hover: none) {
    .share-btn:active {
        transform: scale(0.95);
    }
    
    .gallery-grid img:active {
        transform: scale(1.02);
    }
}

/* Print styles */
@media print {
    .share-container,
    .map-container,
    .gallery-section {
        display: none;
    }
}

/* Live Weather Indicator Styles */
.live-indicator, .live-dot {
    display: none;
}

/* About Section enhancement */
.about-section {
    padding: 5rem 0; /* Increased padding */
}

.about-section .section-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Update the weather section heading */
.weather-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Lightbox enhancements */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

.lb-closeContainer {
    padding: 10px;
}

.lb-close {
    transition: transform 0.3s ease;
}

.lb-close:hover {
    transform: scale(1.1);
}

/* Update gallery grid items to show pointer cursor */
.gallery-grid a {
    cursor: pointer;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

/* Contact Section Styles */
.contact-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.contact-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-section p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-wrapper {
    margin-top: 2rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: var(--secondary-color);
}

.email-link i {
    font-size: 1.4rem;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-section p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .email-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Remove all contact form related styles */