/* General Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

 
html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background: #333;
    color: #333;
}

.fade-in{
    margin: 0;
    padding: 0;
}

header {
    transition: opacity 1.5s ease-in-out;
    opacity: 1; /* Fully visible */
}

/* Class applied when scrolling down */
header.scrolled {
    opacity: 0.5; /* Slightly transparent */
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 1%;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 50px; /* Adjust height as needed */
    width: auto; /* Keeps aspect ratio */
    padding:0;padding-top: 5%;
    margin: 0;
}

nav {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0); /* Default position, no movement */
  }
  
  /* State when scrolled down */
  nav.scrolled {
    opacity: 0; /* Faded out */
    transform: translateY(-100%); /* Slide the navbar up (out of view) */
  }

.nav-links {
    list-style: none;
    display: flex;
    padding: 20px,20px;
    padding-top: 15px;
    color: #fff;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover {
    color: #2683B6;
}

/* Hero Section */

   /*    background: url('../images/hero.png') no-repeat center center/cover;*/
  /* .hero {

    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }  
 */
  
 /*
  .hero-content {
    position: relative;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
  }

  .hero-image {
    opacity: 0; /* Initially invisible *//*
    transition: opacity 1s ease-in-out; /* Smooth fade in and out **//*
    position: absolute; /* Ensure images are stacked on top of each other *//*
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  */

  a, a:visited, a:link, a:active, a:hover {
    color: inherit !important; /* Forces the color to inherit from parent */
    text-decoration: none !important; /* Removes underline */
    outline: none !important; /* Removes focus outline */
  }
  a:focus {
    outline: none !important;
  }
    

.hero h1 {
    font-weight:bold;
    margin-bottom: 0;
    color:#2683B6;
    display: inline;
}


.hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.btn {
    background: #00c4cc;
    color: white;
    padding: 0;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background: #2683B6;
}

section {
    background-color: #343232; /* Color the background of the section */
    padding: 20px 0; /* Optional: Add padding around the section to make space */
}


hr {
    border: none; /* Removes default border */
    height: 2px; /* Adjust thickness */
    background-color: #ccc; /* Line color */
    width: 80%; /* Adjust width */
    margin: 10px auto; /* Add spacing above/below */
}

#welcome{
    background-color: #333; /* Light gray */
    color: #2683B6;
    text-align: center;

}
#welcome h1{
    padding-bottom: 20px;
    text-align: center;
}

#welcome h2{
    padding-bottom: 20px;
    text-align: center;
}


#welcome p {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    text-align: center;
}

#welcome .btn {
    display: inline-block;
    align-self: center;
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #00c4cc; /* Button color */
    color: white;
    text-align: center;
    text-decoration: none; /* Removes underline */
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#welcome .btn:hover {
    background-color: #007b8f; /* Hover color */
}

#welcome .btn:focus {
    outline: none; /* Removes the focus outline */
    transform: scale(1); /* Ensure the button stays at normal size */
}

/* Content Sections */

.content-section .image-container{
    padding: 0;
    margin: 0;
}


.content-section section {
    display: flex; /* Enable flexbox layout */
    flex-direction: column;
    align-items: center; /* Vertically center the content */
    justify-content: flex-start; /* Align items horizontally to the left (default behavior) */
    margin: 0;
    padding: 10px; /* Optional padding */
    background: #494848;
    color: #ccc;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.image-text-wrapper {
    display: flex;
    align-items: center; /* Align image and text */
    justify-content: space-between;
    width: 100%;
    max-width: 1200px; /* Limit width */
    gap: 0px; /* Space between image and text */
}


.hr-container {
    width: 100%; /* Full width */
    background-color: #494848; /* Background color for the remainder of the container */
    padding: 0 0%; /* Optional: Add padding to make the hr centered or change width */
}

.colored-line {
    border: none; /* Removes default border */
    height: 2px; /* Adjust thickness */
    background-color: #ccc; /* Line color */
    width: 90%; /* Adjust width */
    margin: 0px auto; /* Center the line */
}

.content-section .image-container {
    flex: 1; /* Image takes up 1 part of the space */
    margin-right: 20px;  /* Adds space between the image and text */
}

.content-section .image-container img {
    width: 100%;  /* Make the image fill its container */
    height: auto;  /* Maintain aspect ratio */
    border-radius: 0px;  /* Optional: Rounded corners for the image */
}

.content-section .text-container {
    flex: 1; /* Text takes up the remaining space */
}

.content-section .text-container h2 {
    font-size: 24px;
    margin-bottom: 0px;
}

.content-section .text-container p {
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 12px;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 0;
}

/* Footer Section */
.footer {
    background-color: #333;  /* Dark background */
    color: white;
    margin: 0;
    padding: 1rem;
    text-align: center;
    margin-top: -10px;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 20px;    
}

.footer p {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    opacity: 0.8; /* Slightly faded text */
}

/* Form Styling */
.footer .footer-form {
    display: flex;
    flex-direction: column; /* Stack inputs vertically */
    align-items: center;
    gap: 10px; /* Space between inputs */
    width: 100%;
    margin: 0 auto;
}

#contactForm input{
    padding-bottom: 10px;
}


#contactForm {
    display: flex;
    flex-direction: column; /* Stack inputs vertically */
    align-items: center; /* Center inputs horizontally */
    gap: 15px; /* Space between inputs */
    width: 100%;
    margin: 0 auto;
    padding: 0 10%; /* Optionally add padding around the form */
}

#contactForm input,
#contactForm textarea {
    width: 90%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: 0.3s ease-in-out;
    display: block;
}

#contactForm #message {
    width: 90%;
    padding-top: 10px;
    height: 100px;/* Adjust to your desired height */
    resize: none; /* Optional: Prevent the user from resizing */
    line-height: normal;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #00c4cc; /* Highlight input when focused */
}

#contactForm .submit-btn {
    width: 90%;
    max-width: 400px;
    padding: 12px;
    background-color: #00c4cc; /* Button color */
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}


.footer .footer-form .submit-btn:hover {
    background-color: #007b8f; /* Darker on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .footer-form input,
    .footer .footer-form .submit-btn {
        width: 90%; /* Full width on small screens */
    }
}

/*Privacy Statement*/
ul, li {
    font-size: 1rem; /* Match this to your paragraph font size */
    line-height: 1.5;
    margin: 0 0 0.5em 1.5em; /* optional spacing */
    padding: 0;
  }


  .privacy-section .hero {
    background: url('../images/hero.png') no-repeat center center/cover;
    height: 50vh;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.privacy-section .hero h1 {
    font-size: 2.5rem;
    font-weight:bold;
    margin-bottom: 0;
    color:#2683B6;
    text-align: center;
}

.privacy-section .hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-align: center;
}

  .privacy-section .text-container {
    flex: 1; /* Text takes up the remaining space */
    background-color: #494848;
    text-align: left;
    border: none;
}

  .privacy-section h1 {
    flex: 1; /* Text takes up the remaining space */
    text-align: left;
    border: none;
    height: 1px;
}

.privacy-section .text-container h2 {
    font-size: 24px;
    margin-bottom: 0px;
    text-align: left; 
        border: none;
}

.privacy-section .text-container p {
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 12px;
    line-height: 1.6;
    text-align: left; 
}

.privacy-section section {
    display: flex; /* Enable flexbox layout */
    flex-direction: column;
    align-items: left; /* Vertically center the content */
    justify-content: flex-start; /* Align items horizontally to the left (default behavior) */
    margin: 0;
    padding: 10px; /* Optional padding */
    background: #494848;
    color: #ccc;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1); /* Optional shadow */
    text-align: left; 
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
