:root {
  --bg: #000a04;
  --surface: #203326;
  --surface-soft: rgba(255, 255, 255, 0.05);
  --text: #d7ddd4;
  --muted: #8d9284;
  --dark-green: #001409;
  --green: #5a7863;
  --light-green:#00FF5E;
  --gold: #c5a880;
  --radius: 20px;
  --section-x: clamp(24px, 8vw, 200px);
}




/* Reset Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000a04;

}

/* Global Styles */

html {
  scroll-behavior: smooth;

}




body {
    line-height: 1.6;
    overflow-x: hidden;
}

h2{
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    color: var(--green);
}

h3 {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    color: var(--green);
}

p {
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
  color: var(--muted);
}

a {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a:hover {
  color: #C5A880;
}





/* Navigation Bar Styles */


nav {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 30px 50px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(3px);
}

nav a {
    background: transparent;
    font-style: normal;
    font-size: 18px;
    color: #bacbcb;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #C5A880;
    transform: scale(1.5);
}



/* Header and Hero Section Styles */

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 92vh;

}


.profile-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    padding-top: 100px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;

}


.logo,
.profile-img {
  position: relative;
  background: transparent;
  z-index: 2;
}



.profile-img {
    width: calc(min(850px, 95svh));
}

.logo {
    width: 220px;
    height: auto;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #C5A880;
    transform: scale(1.1);
}

/* Hero Slide Styles */

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
  linear-gradient(90deg, rgba(0, 10, 4, 0.96) 0%, rgba(0, 10, 4, 0.75) 45%, rgba(0, 10, 4, 0.35) 100%),
  linear-gradient(0deg, rgba(0, 10, 4, 0.95) 0%, rgba(0, 10, 4, 0.25) 45%);



}



.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}


.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  opacity: 1;
  animation: heroFade 10s infinite;
  filter: saturate(0.92) contrast(1.04);
}

.slide-one {
  object-position: 72% 42%;
}

.slide-two {
  animation-delay: 5s;
  object-position: center;
}



/* Sweep Up Section Styles */

.sweep-up {
    position: fixed;
    padding: 30px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    text-align: center;
    background: transparent;
}


.sweep-up a {
  display: inline-block;
    background: transparent;
}

.sweep-up img {
  width: 80px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
  animation: sweepPulse 1.8s infinite;
  background: transparent;
  transform: rotate(180deg);
}

.sweep-up img.point-up {
  transform: rotate(0deg);
}

.sweep-up img:hover {
  transform: rotate(180deg) translateY(-10px);
}

.sweep-up img.point-up:hover {
  transform: rotate(0deg) translateY(-10px);
}

@keyframes sweepPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(197, 168, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
    }
}





/* Content Section Styles */

.about-content,
.main-container{
  padding: 20px clamp(24px, 7vw, 100px);
  min-height: 70vh;
  scroll-margin-top: 110px;
  z-index: 20;
  position: relative;
}


/* about-content */

.about-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    
}


.about-content img {
    width: 400px;
    height: auto;
    border-radius: 10px;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 80px;
    color: #EBF4DD;
}

.about-text h2 {
    font-size: 36px;
    color: #5A7863;
}


/* main-content */


.main-container {
  display: grid;
  grid-template-areas:
    "main-header main-header"
    "services-content services-content "
    "contact-content contact-content"
    "footer footer";
    grid-template-columns: 1fr 1fr;
    gap:50px;
}



 
.main-header {
    text-align: center;
    grid-area: main-header;
}


.main-header img {
    width: min(300px, 100%);
    height: auto;
    border-radius: 10px;
    grid-area: main-header;
}






/* services-content */


.services-content {
    grid-area:  services-content; 
}


.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    gap: 20px;
    width: 100%;
    justify-items: center;
    padding: 0 20px;
}

.services-content  h2 {
    grid-column: 1;
    text-align: center;
    color: var(--muted);
    margin-bottom: 40px;
}


.booking-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0px;
}

.services-content a {
    display: inline-block;
    padding: 5px 88px;
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(9, 54, 37, 0.76);
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 25px;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: pulse 1.8s infinite;
}

.services-content a:hover {
    color: var(--surface);
    font-size: 30px;
    font-weight: 500;
    background: var(--muted);
    transform: translateY(-3px);
    animation: none;
}



.service {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

/* Service Styles */
.service {
    width: min(100%, 500px);
    height: auto;
    padding: 20px ;
    border-radius: var(--radius);
    box-shadow: 0 18px 25px rgba(0, 0, 0, 0.5);
    color: var(--muted);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}


.service:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 20px rgba(9, 54, 37, 0.76);
}


.service img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
    padding-top: 0;
    background: transparent;
}


.service h3 {
    font-size: 25px;
    color: var(--text);
    border-radius: var(--radius);
    background: transparent;
}

.service p {
    font-family: "Merienda", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    background: transparent;
}

.service-description {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    background: transparent;
}



.contact-content {
    display: grid;
    grid-area: contact-content;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-bottom: 80px;
}


/* business-hours */

.business-hours {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
}

.business-hours h3 {
    color: var(--text);
    margin-bottom: 16px;
}

.business-hours table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Work Sans", sans-serif;
    color: var(--muted);
}

.business-hours td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.18);
}

.business-hours td:last-child {
    color: var(--text);
    text-align: right;
}











.social-media {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: center;
    gap: 50px;
    background: transparent;
    
}


.social-icons > a{
  display: inline-block;
  transition: transform 0.3s ease;
}


.social-icons > a:hover {
    transform: scale(1.1);
}

.social-media  img {
    width: 150px;
    padding-bottom: 10px;
    background: transparent;    
    border-bottom: 1px solid transparent;
    transition: color 180ms ease, border-color 180ms ease;
}




.social-icons  img {
    width: 60px;
    background: transparent;    
    border-bottom: 1px solid transparent;
    transition: color 180ms ease, border-color 180ms ease;
}

.social-icons  img:hover {
    border-color: var(--light-green);
}










/* footer */

footer {
    background: transparent;
    text-align: center;
    color: #8d9284;
    font-size: 14px;
    position: relative;
    z-index: 20;
    grid-area: footer;
}

footer p {
    text-decoration: none;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}







/********************** contact page global styles *************************/

.contact-page .main,
.contact-page .customer-entrance,
.contact-page .social-media,
.contact-page footer,
.contact-page .social-icons,
.contact-page .social-icons a,
.contact-page .social-icons img,
.contact-page h2,
.contact-page .form-row,
.contact-page p{
    background: transparent;
}



.contact-page {
    background:
        linear-gradient(rgba(0, 10, 4, 0.75), rgba(0, 10, 4, 1.75)),
        url("img/bg/bg1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}



.contact-page .main {
    padding: 20px clamp(24px, 7vw, 100px);
    min-height:0;
    scroll-margin-top: 110px;
}


.contact-page .main {
    display: grid;
    grid-template-areas:
        "customer-entrance social-media"
        "contact-form social-media";
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}


.contact-page .contact-media-img {
    width: 250px;
    background: transparent;    
    border-bottom: 1px solid transparent;
}

.contact-page .social-media{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background: transparent;
}

.contact-page .social-icons,
.contact-page .social-icons a,
.contact-page .social-icons img,
.contact-page h2{
    
    background: transparent;
}


/* Get in Touch Section Styles */

.customer-entrance {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    align-items: center;
    min-width: 550px;
    width: min(100%, 620px);
    margin: 0 auto;
    gap: 10px;
    background: transparent;
    /*backdrop-filter: blur(8px);*/
}

.customer-entrance h2 {
    font-size: 36px;
    color: var(--text);
    background: transparent;
}

.contact-form {
  width: min(90%, 520px);
  margin: 0 auto;
  padding: 32px;
  color: var(--muted);
  background: transparent;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.form-row label {
  margin-bottom: 8px;
  font-family: "Work Sans", sans-serif;
  color: var(--text);
  font-size: 14px;
  background: transparent;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(230, 230, 230, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #e6e6e6;
  font-family: "Work Sans", sans-serif;backdrop-filter: blur(28px);
  font-size: 16px;
  outline: none;
    background: transparent;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
    background: transparent;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #c5a880;
  background: rgba(255, 255, 255, 0.07);
    background: transparent;
}

.contact-form button {
    width: 100%;
    display: inline-block;
    padding: 5px 88px;
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: pulse 1.8s infinite;
}

.contact-form button:hover {
    color: var(--surface);
    font-size: 20px;
    font-weight: 500;
    background: var(--muted);
    transform: translateY(-3px);
    animation: none;
}













/* Animations */


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 14px rgba(197, 168, 128, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
    }
}



@keyframes heroFade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  45% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}








@media (max-width: 1024px) {
    nav {
        gap: 26px;
        padding: 22px 32px;
    }

    nav a {
        font-size: 16px;
    }

    header {
        min-height: 98vh;
    }

    .sweep-up img {
        width: 60px;
    }

    .profile-top {
        padding-top: 80px;
    }

    .profile-img {
        width: min(890px, 130vw);
    }

    .logo {
        width: 190px;
    }

    .about-content,
    .main-container {
        padding: 72px 48px;
        scroll-margin-top: 95px;
    }

    .main-container {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .about-text {
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .about-content img {
        width: min(360px, 70vw);
    }

    .services-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service {
        width: 100%;
        gap: 22px;
        justify-content: flex-start;
    }

    .service h3 {
        font-size: 26px;
    }

    .customer-entrance {
        min-width: 0;
        width: min(100%, 620px);
        padding: 0 32px;
    }

    .social-media > img {
        width: 140px;
    }
}

@media (max-width: 640px) {

    header {
        min-height: 100vh;
    }

    .profile-top {
        inset: 0;
        height: 100%;
        bottom: 10px;

    }

    .sweep-up {
        bottom: -10px;
    }

    .main-container {
        grid-template-areas:
            "main-header"
            "services-content"
            "contact-content"
            "footer";
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .business-hours,
    .social-media {
        width: min(100%, 620px);
        justify-self: center;
    }

    .social-media {
        align-items: center;
        text-align: center;
    }

    nav {
        gap: 14px;
        padding: 18px 14px;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 13px;
    }

    nav a:hover {
        transform: scale(1.12);
    }


   

    .profile-img {
        width: min(650px, 160vw);
        bottom: -40px ;
    }

    .logo {
        width: 160px;
    }

    .sweep-up {
        padding-bottom: 12px;
    }

    .sweep-up img {
        width: 48px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }

    .about-content,
    .main-container {
        padding: 64px 24px;
        min-height: auto;
        scroll-margin-top: 120px;
    }

    .about-content {
        gap: 32px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text {
        gap: 24px;
    }

    .about-content img {
        width: min(300px, 86vw);
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 22px;
        width: 100%;
    }

    .service {
        width: 100%;
        height: auto;
        min-height: 0;
        gap: 18px;
        padding: 18px;
    }

    .service img {
        width: 48px;
        height: 48px;
    }

    .service h3 {
        font-size: 22px;
    }

    .service p {
        font-size: 19px;
        line-height: 1.35;
    }

    .business-hours {
        gap: 14px;
    }

    .business-hours table {
        font-size: 15px;
    }

    .business-hours td {
        padding: 12px 0;
    }

    .contact-form {
        width: 100%;
        padding: 20px 0;
    }

    .form-row input,
    .form-row textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    .contact-form button {
        font-size: 13px;
        padding: 14px 16px;
    }

    .social-media {
        gap: 28px;
    }

    .social-media > img {
        width: 130px;
    }

    .social-icons a img {
        width: 42px;
    }

    footer {
        padding-top: 30px;
    }
}

@media (max-width: 420px) {
    nav {
        gap: 10px;
        padding: 14px 10px;
    }

    nav a {
        font-size: 11px;
    }

    
    header {
        min-height: 93vh;
    }

    .profile-top {
        inset: 0;
        height: 100%;

    }

    .sweep-up{
        bottom: 0px;
    }
   

    .profile-img {
        width: min(720px, 152vw);
        bottom: -80px;
    }

    .logo {
        width: 170px;
    }

    .about-content,
    .main-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .service {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .service img {
        width: 44px;
        height: 44px;
    }

    .business-hours td {
        display: block;
        padding: 6px 0;
        border-bottom: 0;
    }

    .business-hours tr {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(197, 168, 128, 0.18);
    }

    .business-hours td:last-child {
        text-align: left;
    }
}






/* media queries - for contact page */


@media (max-width: 900px) {
    .contact-page .main {
        grid-template-areas:
            "customer-entrance"
            "social-media";
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 32px;
    }

    .contact-page .customer-entrance {
        min-width: 0;
        width: 100%;
        padding: 0;
    }

    .contact-page .contact-form {
        width: min(100%, 520px);
    }

    .contact-page .social-media {
        gap: 32px;
    }

    .contact-page .contact-media-img {
        width: min(260px, 70vw);
    }
}



@media (max-width: 640px) {
    .contact-page {
        background-attachment: scroll;
    }

    .contact-page .main {
        padding: 32px 22px;
        gap: 36px;
    }

    .contact-page .customer-entrance h2 {
        font-size: 28px;
        text-align: center;
    }

    .contact-page .customer-entrance p {
        text-align: center;
        font-size: 15px;
    }

    .contact-page .contact-form {
        width: 100%;
        padding: 18px 0;
    }

    .contact-page .form-row input,
    .contact-page .form-row textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    .contact-page .contact-form button {
        padding: 14px 16px;
    }

    .contact-page .contact-media-img {
        width: 200px;
    }

    .contact-page .social-icons img {
        width: 42px;
    }
}


@media (max-width: 420px) {
    .contact-page .main {
        padding: 28px 18px;
    }

    .contact-page .customer-entrance h2 {
        font-size: 24px;
    }

    .contact-page .contact-media-img {
        width: min(220px, 80vw);
    }
}
