/*---Base & Reset---*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html, body {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  width: 100%;
  background: #f8f9fa;
  color: #222;
  position: relative;
}


/*---Colors---*/
:root {
    --color-1: #39614a; /* Green */
    --color-2: #2ecc71; /* Lighter Green */
    --color-3: #e4df7d; /* Yellow */
    --color-4: #f8f9fa; /*Off white */
    --color-5: #ece9a9; /* Light Background */
    --color-6: rgb(0, 89, 255); /* blue */
}

/*---Scroll to top Button---*/

#scrollTopBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-1);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(44,204,113,0.13);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    transition: background 0.2s, transform 0.2s;
    opacity: 0.92;
    animation: beacon-glow 1.2s infinite alternate;
    display: none; /* Hide by default */
}


#scrollTopBtn:hover {
    background: var(--color-2);
    transform: translateY(-4px) scale(1.08);
    opacity: 1;
    animation: beacon-glow 0.6s infinite alternate;
}

/*---Button Glow Effect---*/

@keyframes beacon-glow {
    0% {
        box-shadow: 0 0 12px 4px var(--color-1), 0 2px 12px rgba(44,204,113,0.13);
    }
    100% {
        box-shadow: 0 0 32px 12px var(--color-2), 0 2px 12px rgba(44,204,113,0.13);
    }
}

/* Navigation*/
/* NAVIGATION (DESKTOP) */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 6px 24px -4px rgba(44, 204, 113, 0.18), 0 2px 12px rgba(0, 0, 0, 0.10);
  padding: 16px 40px;
  height: 140px;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 120px;
  width: auto;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-1);
}

.nav-company {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-1);
}

.nav-links-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: orange
}

.nav a.book-now {
  background: var(--color-1);
  color: #fff;
  padding: 10px 22px;
  border: 2px solid var(--color-1);
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(46, 204, 113, 0.1);
  transition: background 1ms ease;
}

.nav a.book-now:hover {
  background: var(--color-3);
  color: #000;
  border: 2px solid #000;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  height: 4px;
  width: 28px;
  background: #222;
  border-radius: 2px;
}

/* CLOSE BUTTON */
.nav-close {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 974px) {
  .nav {
    height: 75px;
    padding: 0 16px;
  }

  .nav-logo {
    height: 60px;
  }

  .nav-company {
    font-size: 1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links-group {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 75vw;
    max-width: 320px;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.1);
    padding: 60px 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1200;
  }

  .nav-links-group.open {
    transform: translateX(0);
  }

  .nav-links-group a {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    text-align: left;
  }

  .nav a.book-now {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 12px 0;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #222;
    cursor: pointer;
  }

  .nav.open .nav-hamburger {
    display: none !important;
  }
}


/* ===========================
   Welcome Section
   =========================== */
.welcome {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* allow content to align right */
  justify-content: center;
  background: url('../images/home-welcome.jpg') center/cover no-repeat;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.welcome-content {
  padding: 40px 30px;
  max-width: 800px;
  margin-left: auto; /* Push to right side */
  text-align: right;  /* Optional: align text right */
}

.welcome h1 {
  font-size: 4.5rem;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -1px;
  -webkit-text-stroke: 1px black; /* width and color of outline */
    /* For Firefox */
    text-stroke: 1px black; /* experimental, less supported */
}

.welcome p {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: #000;
  
}

/* Buttons stay the same */
.cta-btn,
.cta-btn2 {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 15px;
}

.cta-btn {
  background: var(--color-3);
  color: #000;
}

.cta-btn:hover {
  background: transparent;
  border: 2px solid var(--color-3);
  color: var(--color-3);
}

.cta-btn2 {
  background: var(--color-6);
  color: #fff;
  width: 200px;
}

.cta-btn2:hover {
  background: transparent;
  border: 2px solid var(--color-6);
  color: var(--color-6);
}

/* Mobile Responsive */
@media (max-width: 700px) {
   .welcome {
    min-height: 70vh; /* Even shorter section */
    padding: 16px 16px 12px; /* Reduced top + bottom padding */
  }

  .welcome-content {
    margin-top: 0;
    margin-bottom: 0;
    padding: 16px 10px; /* Smaller internal padding */
    text-align: center;
  }

  .welcome h1 {
    font-size: 2.5rem;
    color: var(--color-3);
    -webkit-text-stroke: 1px black; /* width and color of outline */
    /* For Firefox */
    text-stroke: 1px black; /* experimental, less supported */
  }

  .welcome p {
    font-size: 1rem;
    color: #000;
  }

  .cta-btn,
  .cta-btn2 {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }
}


/* ===========================
   Home Features Section
   =========================== */
.features {
    background: var(--color-4);
    padding: 40px 0;
    text-align: center;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.feature {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,204,113,0.07);
    padding: 24px 18px;
    width: 220px;
}

.feature i {
    font-size: 48px;  
    color: var(--color-1);       
    margin-bottom: 12px;
    display: block;       
    width: auto;         
    height: auto;        
}

.features h2{
    font-size: 3rem;
    color: var(--color-1);
    margin-bottom: 12px;
}

/* ===========================
   Home About Section Layout & Gallery
   =========================== */
.about-flex {
    display: flex;
    gap: 48px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin: 48px 0;
}

.about-images {
    display: flex;
    flex-direction: row;
    align-items: flex-start;   
    gap: 24px;                
}

.about-img-tall {
    width: 290px;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.about-img-short {
    width: 290px;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.about-img-group {
    display: flex;
    flex-direction: column;
    gap: 18px;           
}

.experience {
    width: 290px;
    box-sizing: border-box;
    margin: 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    background-color: var(--color-1);
    padding: 18px 28px;
}

.experience i {
    font-size: 48px;
    color: var(--color-3);
    margin-right: 12px;
    flex-shrink: 0;
    transition: 6ms;
}

.experience i:hover {
    transform: translateY(-2px);
}

.experience-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.experience-text .twenty {
    color: var(--color-3);
    font-size: 2.5rem;
}

.experience-text p {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}

.about-content {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
}

.about-content h2 {
    font-size: 1.2rem;
    color: var(--color-1);
    margin-bottom: 0;
}

.about-content h3 {
    font-size: 2.2rem;
    margin-top: 0;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.about-content li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.about-content li i {
    color: var(--color-1);
    margin-right: 8px;
    font-size: 1.2em;
}

.about-content .read-more {
    background-color: var(--color-3);
    text-decoration: none;
    width: 160px;
    color: #000;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.2s;
}

.about-content .read-more:hover {
    background-color: #ffe066;
}

@media (max-width: 700px) {
  .about-flex {
    flex-direction: column;
    gap: 24px;
    margin: 14px 0;
    align-items: center;
    width: 100vw;
  }
  .about-images {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }
  .about-img-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }
  .about-img-tall{
    width: 75vw;
    max-width: 320px;
    height: auto;
    min-width: 0;
    object-fit: cover;
    border-radius: 12px;
    margin: 0;
    display: block;
    position: relative;
    right: 40px;
    overflow: hidden;
  }
  .about-img-short {
    width: 35vw;
    max-width: 120px;
    height: auto;
    min-width: 0;
    object-fit: cover;
    border-radius: 12px;
    margin: 0;
    display: block;
  }
  .experience {
    width: 35vw;
    max-width: 120px;
    padding: 12px 10px;
    font-size: 1rem;
  }
.experience-text .twenty {
    color: var(--color-3);
    font-size: 1.5rem;
}
.experience-text p {
    margin: 0;
    font-size: 0.5rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}

.experience i {
    font-size: 24px;
    color: var(--color-3);
    margin-right: 12px;
    flex-shrink: 0;
    transition: 6ms;
}

/*About Info*/ 

.about-content h2 {
    font-size: 1rem;
    margin-left: 30px;
}

.about-content h3 {
    font-size: 2rem;
    margin-left: 30px;
}

.about-content p {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-left: 30px;
}

.about-content ul {
    margin-left: 60px;
}

.about-content .read-more{
    margin-left: 30px;
}
}

/* ===========================
   Footer
   =========================== */
footer{
    color:azure;
    font-family: Arial, Helvetica, sans-serif;
}

.foot {
    margin-top: 0;
    width: 100%;
    padding: 0 5%; /* Less padding for more width */
    background: rgb(18, 39, 18);
    color: #efefef;
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding-bottom: 0;
    padding-top: 0;
    justify-content: center;
}

.col-1 {
    background-color: var(--color-3);
    flex: 1 1 0;
    min-width: 350px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
    padding: 50px 30px;
    gap: 18px;
}

.col-1 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
    letter-spacing: 1px;
}


.col-1 .contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.col-1 .contact-row i {
    font-size: 1.8rem;
    color: #000;
    border-radius: 50%;
    padding: 1px;
    box-shadow: 0 2px 8px rgba(44,204,113,0.10);
    margin-right: 6px;
}

.col-1 .contact-row span,
.col-1 .contact-row a {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.col-1 .contact-row a:hover {
    color: var(--color-2);
    text-decoration: underline;
}

  footer i{
    font-size: 2.5rem;
  }

  .foot div h3 {
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }

  .col-1 a {
    display: block;
    text-decoration: none;
    color: #000;
    margin-bottom: 10px;
  }
  
.col-2, .col-3 {
    flex: 1 1 0;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 18px;
    gap: 10px;
}

.col-2 h3, .col-3 h3 {
    font-size: 1.50rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.col-2 .links span,
.col-3 .links span {
    font-size: 0.98rem;
    color: var(--color-3);
    font-weight: 400;
}
.col-2 .links a,
.col-3 .links a {
    font-size: 0.98rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 7px;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
    padding-left: 0;
    padding-bottom: 10px;
}

.col-2 .links a:hover,
.col-3 .links a:hover {
    color: var(--color-3);
    cursor: pointer;
}

.col-4 {
    flex: 1 1 0;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 18px;
    gap: 18px;
}

.col-4 h3 {
    font-size: 1.50rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-align: center;
}

/* Newsletter input group */
.col-4 .newsletter-group {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 260px;
    position: relative;
    margin-bottom: 18px;
}

.col-4 input[type="email"] {
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: none;
    padding: 0 56px 0 18px;
    font-size: 1rem;
    outline: none;
    background: #fff;
    color: #222;
    box-shadow: 0 2px 8px rgba(44,204,113,0.07);
}

.col-4 button[type="submit"] {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(44,204,113,0.10);
}

.col-4 button[type="submit"] i {
    font-size: 1.1rem; /* Set the icon size here */
}

.col-4 button[type="submit"]:hover {
    background: var(--color-2);
    color: #fff;
}

/* Social icons */
.col-4 .socials {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    justify-content: center;
}

.col-4 .socials i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid #fff;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}

.col-4 .socials i:hover {
    border: 1px solid var(--color-3);
    color: var(--color-3);
    transform: translateY(-5px);
}


  .dev {
    background-color: rgb(23, 49, 23);
    text-align: center;
    padding: 15px 0;
    font-size: 1.2rem;
    margin-top: 0;
  }

  .dev a {
    color: #fff;
    text-decoration: none;
    font-weight: bolder;
  }

  .dev a:hover {
    color: var(--color-3);
  }

  @media (max-width: 974px) {
  .foot {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 0 2vw;
  }
  .col-1, .col-2, .col-3, .col-4 {
    min-width: 0;
    width: 100%;
    padding: 24px 10px;
    align-items: flex-start;
  }
  .col-4 {
    align-items: center;
  }
  .col-1 h3, .col-2 h3, .col-3 h3, .col-4 h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  .col-1, .col-2, .col-3, .col-4 {
    font-size: 0.98rem;
  }
  .newsletter-group {
    width: 100%;
    max-width: 100%;
  }
  .col-4 input[type="email"] {
    font-size: 0.98rem;
    padding: 0 44px 0 10px;
    height: 36px;
  }
  .col-4 button[type="submit"] {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    right: 3px;
  }
  .col-4 .socials {
    gap: 10px;
    margin-top: 8px;
    justify-content: flex-start;
  }
  .col-4 .socials i {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .dev {
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
  }
}