* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Slide Show*/
#fullscreen-slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin-top: 0; 
  padding-top: 150px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 300%;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/*Side Arrows*/
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.8rem;
  margin-right: 15px;
  text-decoration: none;
  border-radius: 50%;
  z-index: 2;
}

.arrow.prev {
  left: 10px;
}

.arrow.next {
  right: 10px;
}

/* Target behavior for pure-CSS navigation */
#slide-1:target ~ .slider {
  transform: translateX(0%);
}

#slide-2:target ~ .slider {
  transform: translateX(-100%);
}

#slide-3:target ~ .slider {
  transform: translateX(-200%);
}

.slider {
  display: flex;
  height: 100%;
  width: 100%;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overflow-x: scroll;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.slider::-webkit-scrollbar {
  display: none;  /* Chrome, Safari, Opera */
}

/* Text Over the Images */
.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 35px;
  z-index: 2;
  text-shadow: 5px 5px 8px rgba(0, 0, 0, 0.8);
}

.slider-text h2{
  color: #fff;
  font-size: 56px;

}

.slider-text p{
  font-size: 28px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


/* Header */
header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(50px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  height: 150px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 125px;
  margin-bottom: 30px;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul {
display: flex;
justify-content: left; 
list-style: none;
padding: 60px;
padding-right: 100px;
margin-bottom: 5px;
font-size: 18px;
gap: 5rem;
}

nav ul li a {
  display: inline-block; 
  padding: 10px 15px;
  border: 2px solid #333;   
  border-radius: 6px;             
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
  background-color: #617C68;
  color: #fff;
}

/* Hero Section */
#hero {
  color: #333;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
}

/* About & Services */
section {
  padding: 4rem 0;
  text-align: center;
}

h1 {
  color: #333;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
p {
  font-size: 18px;
}



/* Services Carousel */
.service {
  flex: 1 1 300px;
  text-align: center;
}

.service img {
  width: 100%;
  border-radius: 8px;
}
#services {
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
  text-align: center;
}

#services h1 {
  color: #333;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

.service-card {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.95));
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.9s;
}
.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  opacity: 0.8;
}

.service-card:hover img {
  opacity: 1;
}

.service-content {
  padding: 35px;
  background: linear-gradient(to bottom, transparent 0%, white 100%);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-content h2 {
  font-size: 1.7rem;
  margin: 0 0 12px;
  color: #222;
}

.service-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Gallery Section */
.masonry-gallery {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
  display: block;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.masonry-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive tweak */
@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* Contact Section */
#contact {
  padding: 60px 20px;
  background: #fff;
  color: #333;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h1 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  text-align: left;
}

.contact-column {
  flex: 1 1 45%;
}

.contact-column h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-column p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Google Maps */
.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.8s ease;
}

.map-container:hover {
  transform: scale(1.02);
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #ccc;
  text-decoration: underline;
}

/*Location*/
#location {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}



/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .services-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    max-height: 50px;
  }
}

/* Fade-in keyframes */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}