
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #00332C;
    color: #F5F5F5;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
    margin-right: 10px;
}

/* Hide the header */
header.hidden {
    transform: translateY(-100%);
}

nav a {
    color: #F5F5F5;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FFDAB9;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 90vh;
    background: url('Media/landscapeBackground.png') no-repeat center center/cover;
    position: relative;
    color: #fff;
    padding: 2rem;
    animation: fadeIn 1.5s ease-in-out;
}

.hero2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 90vh;
    position: relative;
    color: #fff;
    padding: 2rem;
    animation: fadeIn 1.5s ease-in-out;
    overflow-y: auto;       /* vertical scroll if needed */
    overflow-x: hidden;     /* hide horizontal scroll */
    border: 1px solid #ccc; /* optional styling */
    padding: 10px;
}


.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    animation: slideDown 1s ease-out;
}

.hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    animation: fadeIn 2s ease-in-out;
}

.cta-button {
    display: inline-block;
    background-color: #D97742;
    color: #F5F5F5;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.08);
    background-color: #e08b5a;
}

.highlights, .content {
    padding: 4rem 2rem;
    text-align: center;
    background: #00332C;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #D97742;
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.blog-content {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.blog-content h2 {
    color: #040707;
}
.blog-content p {
    color: #0a0505;
    line-height: 1.6;
}
.blog-categories {
    text-align: center;
    margin: 20px;
}
.blog-categories button {
    background-color: #00332c;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.blog-categories button.active {
    background-color: #d97742;
}
.blog-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 2fr));
    gap: 20px;
    padding: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 15px;
}
.blog-card-content h3 {
    margin-top: 0;
    color: #00332c;
}
.blog-card-content p {
    color: #080303;
}
.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    background-color: #00332c;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
}

form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

input, textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

button {
    background: #D97742;
    color: #F5F5F5;
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

button:hover {
    background: #e08b5a;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #D97742;
    margin-top: 2rem;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

ul {
    list-style-position: inside;
    text-align: center;
    color: #080101;
  }
  

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

@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        align-items: center;
    }
    .hero h2 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

.workshops-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.workshop-card {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.workshop-card h3 {
    font-size: 20px;
    color: #00332c;
    margin-bottom: 10px;
}

.workshop-card p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.workshop-card .cta-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #00332c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.workshop-card .cta-button:hover {
    background-color: #00594d;
}

.service-card {
    display: block;
    background-color: #D97742;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-section {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap to the next row if the screen is too small */
    gap: 20px; /* Adds spacing between cards */
    justify-content: center; /* Centers the cards horizontally */
    margin-top: 20px;
}

.blog-card {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px; /* Set a fixed width for each card */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 18px;
    color: #00332c;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.blog-card .read-more {
    display: inline-block;
    background-color: #00332c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.blog-card .read-more:hover {
    background-color: #00594d;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.social-media {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

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


/* About Section */
.about {
    padding: 40px 20px;
    background-color: #fff;
    color: #555;
}

.about h2 {
    font-size: 28px;
    color: #00332c;
    margin-bottom: 20px;
}

.about ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

/* FAQ Section */
.faq {
    padding: 40px 20px;
    background-color: #f9f9f9;
    color: #555;
}

.faq h2 {
    font-size: 28px;
    color: #00332c;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    color: #00332c;
    margin-bottom: 5px;
}

.faq-item p {
    font-size: 16px;
    color: #555;
}

/* General Mobile Styles */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.5;
        padding-top: 70px;
    }

    header {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    header .logo img {
        height: 40px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a {
        font-size: 14px;
        margin: 5px 0;
    }

    .hero {
        padding: 20px;
        height: auto;
    }

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

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

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .highlights, .content {
        padding: 20px;
    }

    .service-list {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
    }

    .blog-section {
        flex-direction: column;
        align-items: center;
    }

    .blog-card {
        width: 100%;
        max-width: 350px;
    }

    .faq {
        padding: 20px;
    }

    .faq h2 {
        font-size: 24px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    footer {
        padding: 1rem;
        font-size: 14px;
    }

    .social-media {
        flex-direction: column;
        gap: 10px;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }
}