* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  --primary-color: #3e4919;
  --secondary-color: #bda552;
}

p {

  line-height: 1.6;
}


#nav {
    /* background: var(--primary-color); */
    /* color: #fff; */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    width: 100%;
    flex-direction: column;
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#about {
    height: 600px
}


#services {
    height: 500px
}

#contact {
    height: 400px
}

.container {
    width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: 100%;
}



/* #nav .container {
    width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: 100%;
} */


#nav #menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

#nav #menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

#nav #menu ul li {
    list-style: none;
    margin: 0 20px;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    &:hover {
        color: var(--secondary-color);
    }
}

#nav #menu ul li a {
    list-style: none;
    text-decoration: none;
    font-size: 16px;
    color: inherit;
    font-weight: 600;
    transition: all 0.3s ease;
    &:hover {
        color: var(--secondary-color);
    }
}

#nav #logo {
    text-decoration: none;
    /* color: #fff; */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 8px;
    width: 100px;
    height: 100%;
}

#nav #logo h1 {  
    color: inherit;
}

/* Hamburger toggle button */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

#nav.scrolled {
    background: var(--primary-color);
    color: #fff;
}

#nav.scrolled #logo {
    color: #fff;
}

/* 
body {
    padding-top: 70px;
} */

#title h1,
#nav #logo h1 {
  font-family: "Mina", sans-serif;
}

#hero {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    /* background: #edebe8; */
    background: url(/img/hero-cropped.jpg);
    background-size: cover;
    background-position:center;
    height: 90vh;
    width: 100vw;
    font-size: 100px;
}



#hero .container {
    display: block;
}

#title {
    position: relative;
    top: 45vh;
    line-height: 1;
}

#title h1 {
    line-height: 1;
}


#hero a {
    text-decoration: none;
    color: var(--secondary-color);
}

.highlight {
    color: var(--secondary-color);
}

#hero p {
    font-size: 30px;
    width: 100%;
    text-align: center;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}

.section .image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.section .image img {
    /* flex-shrink: 0; */
    min-width: 100%;
    min-height: 100%;
    /* display: block; */
    object-fit: cover;
    /* height:100%; */
    /* object-position: center; */
    border-radius: 8px;
}

#contact .content {
    width: 100%;
}



.section .content {
    width: 50%;
    height: 100%;
    padding: 25px 50px;
}

.section .content h2 {
    padding: 10px 0;
    font-family: "Mina", sans-serif;
    text-transform: uppercase;
}

.section .content p {
    margin-bottom: 15px;
}

#services-list li {
    list-style: none;

}

#services-list .service-list-item {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;    
    display: block;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    &:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }
}

#services-list .service-list-item.selected {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.service-details {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    width: 100%;
    position: relative;
}

.service-details h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: "Mina", sans-serif;
}

.service-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-details ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-details li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-button:hover {
    color: var(--secondary-color);
}

#main-body .section:nth-child(2) {
    background: #edebe8;
}

#main-body .section:nth-child(2) .container{
    flex-direction: row-reverse;
}

#main-body .section h2,
#main-body .section h3{
    color: var(--primary-color);
}

#main-body .section:nth-child(2) h2,
#main-body .section:nth-child(2) h3{
    color: #000;
}

#contact #contact-form.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 15px 0;
}

#contact .contact-form input,
#contact .contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

#contact .contact-form button[type="submit"] {
    width: 100%;
    padding: 12px 16px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

#contact .contact-form button[type="submit"]:hover {
    opacity: 0.95;
}

/* Direct email options below the form */
#contact .contact-direct {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
    max-width: 480px;
}

#contact .contact-card {
    display: block;
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-color);
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

#contact .contact-card h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

#contact .contact-card p {
    font-size: 16px;
}

#contact .contact-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}



#footer {
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 10px;
    width: 100%;
    flex-direction: column;
}

#footer #footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

#footer #footer-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

#footer #footer-menu ul li {
    list-style: none;
    margin: 0 20px;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    &:hover {
        color: var(--secondary-color);
    }
}

#footer #footer-menu ul li a {
    list-style: none;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    &:hover {
        color: var(--secondary-color);
    }
}

#footer .container {
    flex-direction: column;
    align-items: center;
    justify-content:space-around;

}

.page-header {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: #edebe8;
    height: 200px;
    width: 100vw;
    font-size: 60px;
}

.services-container {
    width: 1100px;
}