/* General Styles */
html, body {
  height: 100%; /* Ensure the body takes the full height */
  margin: 0; /* Remove default margin */
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f7dbdb; /* Set a plain background color */
  color: #333;
  display: flex; /* Use flexbox for layout */
  flex-direction: column; /* Stack children vertically */
}

.app {
  max-width: 1600px; /* Set a max width for the app */
  margin: auto; /* Center the app */
  padding: 20px; /* Padding for the app */
  flex: 1; /* Allow the app to grow and fill available space */
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Keeps logo and header content apart */
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  max-width: 200px; /* Adjusted max-width for logo */
  height: auto;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the header content */
  flex: 1; /* Allow header content to take remaining space */
  text-align: center; /* Center text in header */
}

.header-title {
  font-size: 4em; /* Increased title size */
  margin: 10px 0; /* Margin for spacing */
}

.header-content p {
  font-size: 1.5em; /* Increased size of paragraph */
  margin: 0; /* Remove default margin */
}

/* Navigation Styles */
nav {
  margin-top: 10px; /* Space above the navigation */
}

nav.button-nav {
  display: flex;
  justify-content: center; /* Center the button navigation */
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

nav a {
  margin: 10px; /* Space between buttons */
  padding: 15px 25px; /* Increased button size */
  font-size: 3em; /* Increased font size of buttons */
  background-color: #38424d;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none; /* Remove underline from links */
  width: 180px; /* Fixed width for all buttons */
  height: 50px; /* Fixed height for all buttons */
  display: flex; /* Use flexbox to center text */
  align-items: center; /* Center text vertically */
  justify-content: center; /* Center text horizontally */
}

nav a:hover {
  background-color: #272d32; /* Darker shade on hover */
}

.button-nav {
  display: flex; /* Use flexbox for horizontal layout */
  justify-content: flex-start; /* Align items to the start */
  align-items: center; /* Center items vertically */
  padding: 10px; /* Padding around the nav */
  flex-wrap: wrap; /* Allow buttons to wrap onto the next line */
  gap: 10px; /* Space between buttons */
}

.button-nav a {
  padding: 5px 10px; /* Reduce padding for smaller buttons */
  font-size: 16px; /* Increase font size */
  text-decoration: none; /* Remove underline from links */
  color: white; /* Set the text color to white */
  border: 1px solid transparent; /* Optional: Add border for hover effect */
  border-radius: 4px; /* Rounded corners */
  transition: background-color 0.3s, border-color 0.3s; /* Smooth transition for hover effect */
}

.button-nav a:hover {
  background-color: #333; /* Change background color to #333 on hover */
  color: white; /* Keep text color white for contrast */
  border-color: transparent; /* Optional: Keep border transparent on hover */
}

/* Section Styles */
.section {
  margin: 20px 0;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* About Us Section Styling */
.about-us {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-image {
  width: 100%;
  max-width: 500px;
  border: 2px solid #ff66b2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  flex-shrink: 0;
}

.about-us h2 {
  color: #38424d;
}

.about-us h3 {
  color: #ff66b2;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 40px; /* Padding for footer */
  background-color: #38424d; /* Footer background color */
  color: white; /* Footer text color */
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Header */
  .header {
    flex-direction: column; /* Stack logo and content vertically */
    align-items: center;
  }

  .header-title {
    font-size: 3em; /* Adjusted font size for responsiveness */
  }

  .header-content p {
    font-size: 1.2em; /* Adjusted size for smaller screens */
  }

  /* About Us Section */
  .about-us {
    flex-direction: column; /* Stack image and text vertically on small screens */
    align-items: center; /* Center align items */
  }

  .about-image {
    max-width: 100%; /* Make image responsive */
  }
}

/* Price List Styles */
.price-section {
  margin: 20px 0; /* Margin for price sections */
}

.price-toggle {
  background-color: #38424d; /* Button background color */
  color: white; /* Button text color */
  padding: 15px 25px; /* Button padding */
  font-size: 1.2em; /* Font size */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  width: 400px; /* Set width to 400px */
  text-align: center; /* Center text */
  margin-bottom: 40px; /* Space between buttons */
}

.price-toggle:hover {
  background-color: #272d32; /* Darker shade on hover */
}

/* Price Table Styles */
.price-table {
  width: 100%; /* Full width of the table */
  border-collapse: collapse; /* Collapse borders */
  margin-top: 20px; /* Space above the table */
}

.price-table th, .price-table td {
  border: 1px solid #ddd; /* Light gray border */
  padding: 8px; /* Cell padding */
  text-align: center; /* Center text in cells */
}

.price-table th {
  background-color: #f2f2f2; /* Light gray background for header */
  font-weight: bold; /* Bold text for header */
}

.price-table tr:nth-child(even) {
  background-color: #f9f9f9; /* Light background for even rows */
}

.price-table tr:hover {
  background-color: #f1f1f1; /* Highlight row on hover */
}

/* FAQ Section Styles */
.faq-section {
  margin: 20px 0; /* Margin for FAQ section */
  padding: 20px; /* Padding for FAQ section */
  background-color: rgba(255, 255, 255, 0.9); /* Background color */
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.faq-list {
  list-style-type: none; /* Remove bullet points */
  padding: 0; /* Remove padding */
}

.faq-item {
  margin: 10px 0; /* Margin for each FAQ item */
}

.faq-question {
  background-color: #38424d; /* Button background color */
  color: white; /* Button text color */
  padding: 10px; /* Button padding */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  width: 100%; /* Full width */
  text-align: left; /* Align text to the left */
  font-size: 1.2em; /* Font size */
  transition: background-color 0.3s ease; /* Smooth background color transition */
}

.faq-question:hover {
  background-color: #272d32; /* Darker shade on hover */
}

.faq-answer {
  display: block !important; /* Force display for testing */
  padding: 10px; /* Add some padding */
  background-color: #f2f2f2; /* Light gray background for visibility */
}

/* Show answer when question is clicked */
.faq-item.active .faq-answer {
  display: block; /* Show answer when active */
}

.social-icon {
  width: 50px; /* Adjust the width as needed */
  height: 50px; /* Adjust the height as needed */
  margin: 10px; /* Add some margin for spacing */
  transition: transform 0.3s; /* Add a transition for hover effect */
}

.social-icon:hover {
  transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

.gallery-section {
  padding: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: auto;
}

.gallery-video {
  width: 100%;
  height: auto;
}

.top-menu {
  display: flex; /* Use flexbox for horizontal layout */
  justify-content: space-between; /* Space buttons evenly */
  align-items: center; /* Center items vertically */
  padding: 10px; /* Padding around the menu */
  width: 100%; /* Ensure the menu takes the full width */
  box-sizing: border-box; /* Include padding in width calculation */
}

.top-menu button {
  padding: 5px 10px; /* Reduce padding for smaller buttons */
  font-size: 14px; /* Adjust font size */
  margin: 0 5px; /* Adjust margin between buttons */
  cursor: pointer; /* Change cursor to pointer on hover */
  border: none; /* Remove default border */
  background-color: #007bff; /* Button background color */
  color: white; /* Button text color */
  border-radius: 4px; /* Rounded corners */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.top-menu button:hover {
  background-color: #0056b3; /* Darker background on hover */
}
