/* Matching Palette */
/* 
#fff9f0 main
#665d4e brown
#b4aa99 grey ish
#d8fffb light blue
#a1cac2  grey green
*/


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

/* Header */

.navbar {
    background: #FFF9F0;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 150px;
    z-index: 1;
    width: 99%;
    max-width: 1300px;
    margin: 0 auto;
    pad: 0 50px;
}

#navbar__logo {
    background-color: #FFF9F0;
    background-image: linear-gradient(to top, #665d4e 0%, #b4aa99 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #665d4e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    transition: 0.3s ease;
}

.navbar_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #a1cac2;
    color: #FFF9F0;
    transition: 0.3s ease;
}

.button:hover {
    background: #d8fffb;
    color: #665d4e;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.navbar__links:hover {
    color: #a1cac2;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    /* Controll of popping menu bar */
    .navbar__menu {
        padding-top: 0rem;
        display: table;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        /* Make disappear */
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease; 
        height: 30vh;
        z-index: -1;
        background: #FFF9F0;
    }

    .navbar__menu.active {
        background: #FFF9F0;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 30vh;
        font-size: 1.2rem;
    }

    #navbar__logo {
        padding-left: 0px;
        margin-right: 70px;
        transition: all 0.3s ease-in-out;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #665d4e;
        display: block;
        cursor: default;
    }

    .navbar__item {
        width: 100%;
        height: auto;     /* ← Fixes huge vertical spacing */
        padding: 0rem 0;  /* optional: normal spacing */
    }

    .navbar__links {
        display: table;
        text-align: center;
        padding: 0.8rem 0;
        width: 100%;
    }

    #mobile-menu {
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
        padding: 10px;
        cursor: pointer;
    }

    .navbar__btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;       /* full width of menu container */
        padding-bottom: 1rem;         
    }

    .button {
        display: table;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 2rem;
        margin: 0;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

     #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

      #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Header End */

/* Start Hero Section  */

html, body {
    background-color: #FFF9F0;
}


/* .main {
    background-color: #000000;
} */

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 85vh;
    background-color: #FFF9F0;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content h1 {
    font-size: 3.5rem;
    font-family: 'Pacifico', cursive;
    background-color: #FFF9F0;
    color: #665d4e;
    font-weight: 400;
   
 
}

.main__content h2 {
    font-size: 2rem;
    background-color: #FFF9F0;
    color: #665d4e;
    font-weight: 400;
}

.main__content p {
    font-size: 1.5rem;
    background-color: #FFF9F0;
    color: #a1cac2;
    font-weight: 500;
}

.main__btn {
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  outline: none;
  background: #a1cac2;
  color: #FFF9F0;
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #FFF9F0;
    text-decoration: none;
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #665d4e;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover {
    background: #d8fffb;
}

.main__btn:hover:after {
    width: 100%;
}

.main__img--container {
    text-align: center;
}

#main__img {
    height: 100%;
    width: 100%;
}

/* Mobile Responsive */

@media screen and (max-width: 768px) {
    .main__container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }

    .main__content {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .main__content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 1.5rem;
    }

    .main__content p {
        margin-top: 1rem;
        font-size: 1.3rem;
    }

}

@media screen and (max-width: 480px) {
    .main__content h1 {
        font-size: 2rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 1.3rem;
    }

    .main__content p {
        margin-top: 1rem;
        font-size: 1.1rem;
    }

    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/* about me */

.about {
  background-color: #eaecbf;   /* light warm background */
    padding: 80px 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 40px auto;

    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 80px auto;
    /* height: 90vh; */
    z-index: 1;
    width: 100%;
    max-width: 1300px;
}

.about h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  color: #665d4e;
}


/* WORKING WITH */

.working_with {
    background-color: #fff5e2;   /* light warm background */
    padding: 80px 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 40px auto;

    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 80px auto;
    /* height: 90vh; */
    z-index: 1;
    width: 100%;
    max-width: 1300px;
}

.working_with h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  color: #665d4e;
}

/* Work together */

.work {
   background-color: #eaecbf;   /* light warm background */
    padding: 80px 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 40px auto;

    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 80px auto;
    /* height: 90vh; */
    z-index: 1;
    width: 100%;
    max-width: 1300px;
}

.work h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  color: #665d4e;
}


/* Expectations */

.expectations {
  background-color: #fff5e2;   /* light warm background */
    padding: 80px 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 40px auto;

    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 80px auto;
    /* height: 90vh; */
    z-index: 1;
    width: 100%;
    max-width: 1300px;
}

.expectations h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  color: #665d4e;
}

/* Outlook */

.outlook {
   background-color: #eaecbf;   /* light warm background */
    padding: 80px 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 40px auto;

    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 80px auto;
    /* height: 90vh; */
    z-index: 1;
    width: 100%;
    max-width: 1300px;
}

.outlook h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  color: #665d4e;
}

/* Quote */

.quote {
  background-color: #fff5e2;   /* light warm background */
    padding: 80px 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 40px auto;

    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 80px auto;
    /* height: 90vh; */
    z-index: 1;
    width: 100%;
    max-width: 1300px;
}

.quote h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  color: #665d4e;
}


/* Options */

.options {
   background-color: #eaecbf;   /* light warm background */
    padding: 80px 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 40px auto;

    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 80px auto;
    /* height: 90vh; */
    z-index: 1;
    width: 100%;
    max-width: 1300px;
}

.options h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  color: #665d4e;
}


/* CONTACT */

.contact {
  background-color: #fff5e2;   /* light warm background */
    padding: 80px 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 40px auto;

    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 80px auto;
    /* height: 90vh; */
    z-index: 1;
    width: 100%;
    max-width: 1300px;

    /* CONTACT SECTION - FULL WIDTH LIKE OTHER SECTIONS */
.contact {
    background-color: #fff5e2; /* light warm background */
    padding: 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 80px auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact h1 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    color: #665d4e;
    margin-bottom: 2rem;
    grid-column: 1 / -1; /* span both columns */
}

/* FORM - now fills left half */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
    color: #665d4e;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a1cac2;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FE846F;
    box-shadow: 0 2px 8px rgba(254, 132, 111, 0.2);
}

.contact-form .btn {
    align-self: flex-start;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    border: 2px solid #FE846F;
    background-color: #FE846F;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #fff;
    color: #FE846F;
    box-shadow: 0 4px 15px rgba(254,132,111,0.3);
}

/* CONTACT INFO - fills right half */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    font-size: 1.2rem;
    color: #FE846F;
    margin-right: 15px;
}

.contact-info h4 {
    font-size: 1rem;
    color: #665d4e;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact {
        display: block;
        padding: 50px 20px;
    }
    
    .contact h1 {
        text-align: center;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        margin: 0 auto;
    }
}
}

.contact h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  color: #665d4e;
}




/* FAQS */

.faqs {
  background-color: #eaecbf;   /* light warm background */
    padding: 80px 80px;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin: 40px auto;

    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 80px auto;
    /* height: 90vh; */
    z-index: 1;
    width: 100%;
    max-width: 1300px;
}

.faqs h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  color: #665d4e;
}



/* FOOTER FULL WIDTH */
.footer {
    background-color: #665d4e; /* dark warm brown for contrast */
    color: #FFF9F0;
    padding: 20px 20px;
    text-align: center;
    font-size: 0.95rem;
}

.footer h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #d8fffb;
}

.footer p {
    margin: 5px 0;
    color: #fff9f0;
}

.footer .social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 15px 0;
}

.footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #a1cac2;
    color: #fff9f0;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background-color: #d8fffb;
    color: #665d4e;
}

.footer small {
    color: #b4aa99;
    margin-top: 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer .social-icons {
        gap: 15px;
    }
}



html {
  scroll-behavior: smooth;
}

/* Scroll adjust for stick navbar  */
[id] {
  scroll-margin-top: 110px;
}

/* https://www.youtube.com/watch?v=FazgJVnrVuI */