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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header & Navigation */
header {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav h1 {
    font-size: 1.5rem;
}

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

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/hero.jpeg') no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    opacity: 0;
    animation: heroFadeIn 1.5s ease-in-out 0.3s forwards;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: heroContentSlideIn 1.2s ease-out 0.8s forwards;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextFadeIn 0.8s ease-out 1.2s forwards;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextFadeIn 0.8s ease-out 1.6s forwards;
    text-align: center;
    margin: 0 auto;
}

/* Hero animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroContentSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlights h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.highlights ul {
    list-style: none;
}

.highlights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.highlights li:before {
    content: "🌟 ";
    margin-right: 0.5rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.gallery h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.gallery-item.animate-gallery-item {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.contact h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #1a252f;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80%;
    margin-top: 5%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}

.lightbox-caption {
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 50px;
}


.quote-section {
    background: #fff8f0;
    padding: 2.5rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-section blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #7a4c15;
    border-left: 4px solid #e2b97f;
    margin: 0;
    padding: 1rem 1.5rem;
    background: #fffbe9;
    border-radius: 8px;
    max-width: 90vw;
    box-sizing: border-box;
    line-height: 1.5;
    display: inline-block;
}

@media (max-width: 600px) {
    .quote-section {
        padding: 1.2rem 0;
    }
    .quote-section blockquote {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        max-width: 98vw;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        background-attachment: scroll;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        background-position: center center;
        margin-top: 120px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        width: 95%;
    }
}

/* Smooth animations */
.animate-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-item.animate-gallery-item {
    opacity: 1;
    transform: translateY(0);
}

/* Lazy loading styles */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.loaded {
    opacity: 1;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}
/* ...existing code... */

.contact {
    background: linear-gradient(rgba(44,62,80,0.7), rgba(44,62,80,0.7)), url('images/IMG_0355.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    position: relative;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-info p, .contact-info a {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.contact h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Optional: fade-in effect */
.contact {
    opacity: 0;
    animation: fadeInContactBg 1.2s 0.3s forwards;
}
@keyframes fadeInContactBg {
    from { opacity: 0; }
    to { opacity: 1; }
}

.Temp {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    background-color: #e74c3c;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}