/* General Styling (assuming existing content) */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.header-logo {
    max-width: 150px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out; /* Apply fade-in to logo */
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin-bottom: 10px;
    /* Animation for H1 */
    animation: fadeInUp 1s ease-out forwards;
}

.tagline {
    font-size: 1.2em;
    margin-bottom: 15px;
    /* Animations for taglines with staggered delay */
    opacity: 0; /* Start hidden for animation */
    animation: fadeIn 1s ease-out forwards;
}

.tagline:nth-of-type(1) { /* First tagline */
    animation-delay: 0.5s;
}

.tagline:nth-of-type(2) { /* Second tagline */
    animation-delay: 1s;
}

.btn {
    display: inline-block;
    color: #fff;
    background: #FF5733; /* Example button color */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
    /* Animation for button */
    opacity: 0; /* Start hidden for animation */
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.5s; /* Delay after taglines */
}

.btn:hover {
    background: #E64A26;
}

.section-padded {
    padding: 60px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    /* Animation for H3 headings */
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden */
}

ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 20px auto;
}

ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.callout, .emphasis {
    text-align: center;
    font-style: italic;
    font-weight: 600;
    color: #FF5733;
    margin-top: 30px;
}

.text-center {
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button.btn-primary {
    display: block;
    width: auto;
    margin: 20px auto 0 auto;
    padding: 12px 25px;
    font-size: 1.1rem;
}

.contact-info-label {
    margin-top: 40px;
    font-weight: 600;
}

.whatsapp-link {
    color: #25D366; /* WhatsApp green */
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* --- ANIMATIONS --- */

/* Keyframes for Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px); /* Starts 20px below its final position */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Ends at its final position */
    }
}

/* Keyframes for Simple Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Applying animations */

/* Initial state for elements that will animate on page load */
.hero h1,
.hero .tagline,
.hero .btn,
h3,
.header-logo {
    opacity: 0; /* Keep elements hidden until animation starts */
}

/* Specific animation properties for elements */
.hero h1 {
    animation: fadeInUp 1s ease-out forwards;
}

.hero .tagline:nth-of-type(1) {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s; /* Delay for the first tagline */
}

.hero .tagline:nth-of-type(2) {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s; /* Delay for the second tagline */
}

.hero .btn {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.5s; /* Delay for the button */
}

.header-logo {
    animation: fadeIn 1s ease-out forwards;
}


/* For all section headings (h3) */
/* Note: For animations on scroll (when element enters viewport),
   you would typically need JavaScript (e.g., Intersection Observer).
   This will make them animate on page load. */
h3 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s; /* A slight delay for headings to appear */
}
/* --- Photo Gallery Category Heading Styling --- */
.gallery-category-heading {
    font-family: 'Playfair Display', serif; /* Consistent with other headings */
    font-size: 1.8em; /* Slightly smaller than h3 */
    margin-top: 60px; /* Space above each category */
    margin-bottom: 30px; /* Space below each category */
    color: #444;
    text-align: center;
    /* Optional: Add a subtle animation if you like, similar to h3 */
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s; /* Delay for new headings */
}
