/* Reset and base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reset basics */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Header Layout */
.top-header {
  background: #333;
  color: white;
  padding: 10px 0;
}

.header-left,
.header-right {
  flex: 0 0 auto;
}

.logo,
.header-left img {
  max-width: 190px;
  height: auto;
  display: block;
  width: 100%;
}

/* Contact info area */
.header-right {
  display: flex;
  align-items: center;
  flex: 1; /* Take up remaining space */
  overflow: hidden;
	gap: 15px;
}

.header-left {
  flex: 0 0 auto; /* Fixed width for logo */
	display: flex;
	align-items: center;
	gap: 10px;
}

.top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Left align everything */
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Logo stays fixed on the left */
.logo {
  height: 60px; /* or whatever height looks right */
  width: auto;
  display: block;
}

.container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
  overflow: hidden;
}

.contact-item {
  color: white;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  width: 100%;
  gap: 15px;
  font-size: 1.6em;
  white-space: nowrap;
  margin-right: 20px;
}

/* Contact info */
.contact-menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-item {
  font-size: 1em;
  white-space: nowrap;
}

/* Contact items with separator */
.contact-item:not(:first-child) {
  position: relative;
  padding-left: 15px;
  margin-left: 10px;
}

.contact-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background-color: #ccc;
}

.image-button {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	align-self: center;
	gap: 20px;
	width: 60px;
}

.image-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.image-button img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
	align-self: center;
	gap: 20px;
}

.image-button.small {
  width: 60px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
	gap: 20px;
}
.image-button.small {
  height: 60px;
  width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile styles */
@media (max-width: 700px) {
  .container {
    justify-content: space-between;
  }

  .header-right {
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
  }

  .contact-toggle {
    display: block;
  }

  .contact-menu {
    display: none;
    flex-direction: column;
    background: #444;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-top: 5px;
  }

  .contact-menu.show {
    display: flex;
  }
}

/* Toggle button - hidden on large screens */
.contact-toggle {
  display: none;
  background: none;
  border: 1px solid white;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* Contact menu shown inline by default */
.contact-menu {
  display: flex;
  gap: 15px;
}

/* Hide menu initially when toggled closed on mobile */
.contact-menu[hidden] {
  display: none !important;
}


/* When toggle is active, show contact menu */
.header-right.open .contact-menu {
  display: flex;
}

/* Optional: style contact items inside dropdown */
.contact-menu .contact-item {
  padding: 5px 0;
  color: white;
  border-bottom: 1px solid #666;
}

.contact-menu .contact-item:last-child {
  border-bottom: none;
}

/* Links */
.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Social Media */
.social-media a {
  margin-left: 10px;
}

.social-media img {
  width: 40px;
  height: 40px;
}

/* Main Header Section */
header {
  background: url('images/background.JPG') no-repeat top center/cover;
  height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-attachment: fixed;
}

.blur-background {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

header h1 {
  font-size: 4em;
  margin: 0;
  font-weight: 790;
  color: white;
}

header p {
  font-size: 1.2em;
  margin: 10px;
}

.cta-button {
  background: #006400;
  color: white;
  padding: 10px 20px;
  font-size: 1.2em;
  border-radius: 5px;
  text-decoration: none;
}

.cta-button:hover {
  background: #228B22;
}

/* Sections with padding */
#about, #services, .container-gallary, #contact, .gallery-section {
  padding: 50px 20px;
  text-align: center;
}

#about {
  background: #f4f4f4;
}

#about img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin-top: 20px;
}

/* Services */
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.service-item {
  flex-basis: 45%;
  background: #e2e2e2;
  padding: 20px;
  border-radius: 10px;
}

h3 {
	font-size: 2em;
	margin: 0 0 20px;
	color: #333;
	font-weight: 100;
}

/* Testimonials */
h2 {
  font-size: 2em;
  margin: 0 0 20px;
  color: white;
  font-weight: 50;
}

.gallery-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #5aa9ea;
  color: white;
  font-size: 22px;
  border-radius: 5px;
  font-style: italic;
  margin: 20px 0;
  transition: background-color 0.3s;
  text-decoration: none;
}

.gallery-button:hover {
  background-color: #c00;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: auto;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

form label {
  display: block;
  margin: 10px 0 5px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
}

form button {
  width: 100%;
  padding: 10px;
  background: #006400;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* Contacts */
.contact-section {
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    margin: auto;
    text-align: center;
  }

  .contact-section a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
	font-size: 1em
  }

  .contact-section a:hover {
    color: #555;
	font-size: 1em
  }

.contact-section h2 {
	color:#333;
	font-size: 3em;
}

.contact-section p {
	color:#333;
	font-size: 1.5em;
}


/* Gallery */
.gallery-section {
  background: #fff;
  color: white;
}

.gallery-section h2 {
  color: #333;
  font-size: 2.5em;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-rows: 1fr;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  position: relative;
}

.gallery-item img,
.gallery-item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px #000;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

/* Images & iframes responsive */
img, iframe {
  max-width: 100%;
  height: auto;
}

#about {
  background-color: #333; /* light gray background */
  padding: 60px 20px;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.8;
}

#about h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.about-image {
  max-width: 300px;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
}

#contact {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

#contact h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #02ccfe;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

form button:hover {
  background-color: #00b1dd;
}

#social-media-section {
  background-color: #333;         /* Dark background color */
  display: flex;                  /* Enables Flexbox layout */
  flex-direction: row;            /* Arranges child elements in a row */
  justify-content: center;        /* Centers the icons horizontally */
  align-items: center;            /* Vertically aligns the icons */
  padding: 20px;  /* Inner spacing for the section */
}

#social-media-section a {
  margin: 0 10px;                 /* Horizontal spacing between icons */
}

#social-media-section a img {
  width: 40px;                    /* Sets a consistent width for each icon */
  height: auto;                   /* Maintains the aspect ratio */
  display: block;                 /* Prevents inline spacing issues */
}
