/* General body styling */
html, body {
    height: 100%; /* Ensure html and body cover full height */
    margin: 0; /* Remove default margin */
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body covers at least the viewport height */
    margin: 0;
    background-color: #f4f4f4; /* Background color */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Main container to hold content */
.main-content {
    flex: 1; /* Allows the content area to grow and fill available space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Ensure padding around content */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Container styling */
.container {
    text-align: center;
    background-color: #ffffff; /* Background color for the container */
    padding: 20px; /* Padding for better spacing */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 700px; /* Limit the width for better readability */
    width: 65%; /* Full width of container */
    margin: 0 auto; /* Center container horizontally */
}

/* Back button styling */
.back-button {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    padding: 8px 16px;
    border: none;
    background-color: #c64a30; /* Button color */
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.back-button:hover {
    background-color: #a03e2e; /* Slightly darker shade for hover effect */
}

/* Logo styling */
.logo {
    margin-bottom: 20px;
}

.page-title {
    font-size: 1.5em; /* or 24px if you prefer */
    color: #c64a30; /* Same deep orange */
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px; /* Space below the title */
    padding: 10px 0px; /* Add padding around the title */
}

/* Welcome text styling */
.welcome-text {
    margin: 20px 0;
    font-size: 18px;
    color: #333333;
    text-align: centre; /* Centralize text */
}

.welcome-text ul {
    text-align: left; /* Ensures <ul> is left-aligned */
    padding-left: 20px; /* Optional: Adds padding for list indentation */
}

.welcome-text li {
    text-align: left; /* Ensures <li> items are left-aligned */
}

.welcome-text b.title {
    font-size: 1.5em; /* Increase font size by 1.5 times the base font size */
    color: #c64a30; /* Title color */
    display: block; /* Ensure titles are displayed as block elements */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

.welcome-text p {
    text-align: left;
    padding-left: 0px; /* Remove indentation for features list */
    margin: 0; /* Remove default margin */
}

/* Button styling */
.menu-button {
    display: block; /* Ensure buttons are block-level elements for vertical stacking */
    margin: 10px auto; /* Center buttons and adjust spacing */
    padding: 10px 20px;
    border: none;
    background-color: #c64a30; /* Button color */
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center; /* Center text within button */
}

.menu-button:hover {
    background-color: #a03e2e; /* Slightly darker shade for hover effect */
}

/* Copyright text styling */
.copyright {
    font-size: 12px; /* Small font size */
    color: #666666; /* Gray color for copyright text */
    text-align: center; /* Center align text */
    padding: 10px; /* Padding for spacing */
    position: relative; /* Ensure relative positioning */
    margin-top: auto; /* Pushes the copyright text to the bottom of the flex container */
}

/* Gallery styling */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-item {
    width: 300px; /* Fixed width for all gallery items */
    height: 200px; /* Fixed height for all gallery items */
    overflow: hidden; /* Hide overflow to maintain size */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the area without distortion */
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Light‑box overlay ( full‑screen image viewer ) */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;                      /* shorthand for top/right/bottom/left: 0 */
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;              /* makes it clear you can click to close */
}

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

/* optional “X” button—keep if you want it, otherwise delete */
#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}


.rounded-video {
    border-radius: 10px; /* Adjust the value for more or less curve */
    overflow: hidden; /* Ensures the rounded corners are applied properly */
}

.support-banner {
    background-color: #ECE3A1;
    color: black;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.section-title {
    color: #c64a30;
    font-weight: bold;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
}

.contact_success {
    background-color: #e6f4e8;
    border: 1px solid #66a366;
    color: #2d662d;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.contact_error {
    background-color: #fde8e8;
    border: 1px solid #cc5c5c;
    color: #a33a3a;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

textarea {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
}
