@font-face{
    font-family:"CormorantGaramond";
    src: url(fonts/CormorantGaramond-Medium.woff2);
    font-weight: 400;
}
@font-face{
    font-family:"Poppins";
    src: url(fonts/Poppins-Light.woff2);
    font-weight: 700;
}




*{
    text-decoration: none;
 color: #3b2c24;
 border: none;
 background: none;
 margin: 0;
 padding: 0;
 outline: 0;
 font-family: "CormorantGaramond";
}

.primary-btn{
    background-color: #8d775a;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: #00000059 0px 5px 15px;;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .7s ease-in;
    transform: scale(1);

}

.primary-btn:hover{
    color:#E0B622;
    border-color:  #E0B622;
    background-color: #f4efe7;
    transition: all .7s ease-in;
    transform: scale(1.15);

}

.secondary-button{
    background-color: #f4efe7;
    border-radius: 30px;
    color: #222222;
    padding: 7px 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .7s ease-in ;
    transform: scale(1);
}

.secondary-button:hover{
background-color: #8d775a;
transition: all .7s ease-in;
transform: scale(1.15);

}

.max-width-container{
    max-width: 1200px;
    margin: 0 auto;
}



body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif; 
}


header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
}

.mobile-only-logo {
    display: none; 
}

.main-nav {
    display: flex;
    justify-content: space-around; 
    align-items: center;   
    gap: 40px;             
}

.nav-group {
    font-size: 26px;
    display: contents;
    gap: 50px;           
}

.nav-item {
    text-decoration: none;
    color: #3d2b1f;        
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
    letter-spacing: 2px;
}


.logo-wrapper img {
    width: 180px;
    height: 90px;           
    display: block;
    image-rendering: -webkit-optimize-contrast; 
}


.hero-shot {
    background-image: url('images/heroshot.jpg'); 
    background-size: cover;    
    background-position: center;   
    height: 100vh;              
    display: flex;
    justify-content: center;     
    align-items: center;         
    position: relative;
}

.burger-btn {
    display: none;
}


.about-plan {
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center; 
    background-color: #fdfaf7;
    border-bottom: 3px solid #d8cfc4;
    border-top:   3px solid #d8cfc4;
}

.aboutplan-container {
    width: 90%;
    max-width: 1000px;
    display: flex;
    align-items: center; 
    gap: 50px; 
}


.about-left {
    width: 70%;
    display: flex;
    flex-wrap: wrap; 
    gap: 10px; 
}


.img-wrapper {
   width: calc(33.33% - 7px);
    height: 250px; 
    overflow: hidden;
    border-radius: 4px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}


.about-right {
    width: 30%;
}

.about-right h2 {
    font-size: 40px;
    color: #3d2b1f;
    margin-bottom: 15px;
}

.about-right p{
    font-size: 28px;
}


#services {
    padding: 100px 0;
    background-color: #fdfaf7; 
    display: flex;
    justify-content: center;
    width: 100%;
    border-bottom: 3px solid #d8cfc4;
}

.services-grid {
    max-width: 1200px;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}


.services-title {
    grid-column: 1 / -1; 
    text-align: center;
    margin-bottom: 40px;
}

.services-title h2 {
    font-size: 40px;
    color: #3d2b1f;
    font-family: serif;
    margin-bottom: 15px;
}

.services-title p {
    font-size: 20px;
    color: #222222;
    font-weight: 600;
    font-family:'Poppins';
}


.services-card, .services {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    border: 1px solid #eee;
}

.services-card:hover, .services:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}


.services-card img, .services img {
    width: 100%;       
    height: 250px;     
    object-fit: cover;  
    object-position: top;
    display: block;     
    margin: 0;       
}


.card-content {
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    flex-grow: 1;        
}

.card-content h3 {
    font-size: 24px;
    color: #3d2b1f;
    font-family: serif;
    margin-bottom: 20px;
    width: 100%;
}

.card-content span {
    display: block;
    font-size: 14px;
    color: #4b3f36;
    margin-bottom: 10px;
    width: 100%;
    font-family: sans-serif;
}


.secondary-button {
    width: 70%;
    background-color: rgba(26, 47, 22, 0.05); 
    color: #1a2f16; 
    
  
    border: 1px solid rgba(26, 47, 22, 0.2);
    backdrop-filter: blur(5px); 
    
    padding: 16px 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
    border-radius: 7px; 
}

.secondary-button:hover {
 
    background-color: #1a2f16;
    color: #ffffff;
    border-color: #1a2f16;
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


#about {
    width: 100%;
    height: auto;
    padding: 70px 0 70px 0;
    background-color: #fdfaf7;
    display: flex;
    justify-content: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
    max-width: 1100px;
    gap: 40px;
    align-items: center;
}


.about-tile {
    grid-column: 1 / -1; 
    text-align: center;
    margin-bottom: 40px;
}

.about-tile h2 {
    font-size: 40px;
    color: #3d2b1f;
    font-family: serif;
    position: relative;
    display: inline-block;
}

.about-tile h2::after {
    content: '';
    display: block;
    width: 70%;
    height: 1px;
    background-color: #1a2f16;
    margin: 10px auto 0;
}

.about-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.owner-name {
    display: block;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a2f16;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-info p {
    font-size: 24px; 
    line-height: 1.6;
    color: #222222;
    margin-bottom: 30px;
}


.about-img {
    display: flex;
    justify-content: center;
}

.about-img img {
    width: 100%;
    max-width: 380px; 
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #d8cfc4;
    box-shadow: 10px 10px 0px #d8cfc4; 
}

#about .secondary-button {
    width:max-content;
    background-color: transparent;
    border: 1px solid #1a2f16;
    color: #000;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

#about .secondary-button:hover {
    background-color: #1a2f16;
    color: white;
}


footer {
    background-color: #F4EFE7; 
    padding-top: 40px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    color: #3d2b1f; 
    border-top: 1px solid #eee; 
    width: 100%;
}

.footer-left {
    width: 65%;
    display: flex;
    flex-direction: column;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-item {
    display: flex;
    flex-direction: column;
}


.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #1a2f16;
    font-family: serif;
    font-weight: 600;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    text-decoration: none;
    color: #777; 
    font-size: 14px;
    transition: 0.3s ease;
    font-weight: 600;
}

.footer-list a:hover {
    color: #1a2f16; 
}


.footer-rights {
    font-size:14px;
    color: #222222;
    padding-top: 25px;
}

.footer-right {
    width: 25%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.footer-right img {
    max-width: 160px;
    opacity: 0.8;
    transition: 0.4s;
}

.footer-right img:hover {
    opacity: 1;
    filter: none;
}







@media (max-width:900px){



.header-container {
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;   
        justify-content: center !important;
        padding: 10px 0 !important;       
        width: 100% !important;
    }
.logo-wrapper{
    position:relative;
    z-index:2001;
}

.logo-wrapper img{
    width:240px;
    height:120px;
}


.mobile-only-logo {
        display: block !important;
        order: 2 !important;               
        text-align: center !important;     
        width: 100% !important;
    }

    .mobile-only-logo img{
        width: 250px;
    }

.burger-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
  
    margin: 0 auto !important; 
    padding: 0 !important; 
    border: none !important;
    background: transparent !important;
    
   
    width: 40px !important; 
    height: 40px !important;
    cursor: pointer !important;
}

.burger-btn img {
    display: block !important;
    margin: 0 !important; 
}

.burger-btn.active {
        z-index: 2100 !important; 
        position: fixed !important; 
       
    }


.main-nav{
    position:fixed;
    top:0;
    left:-100%;
    width:100%;
    height:100vh;
    background:#fdfaf7;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:40px;
    transition:0.8s;
    align-items: center;
    z-index: 2000;
}


.main-nav.active{
    left:0;
    padding-top:20px; 
}



.nav-group{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.nav-item{
    font-size:28px;
    text-align:center;
}



.aboutplan-container{
    flex-direction:column;
    gap:30px;
}

.about-right{
    width:100%;
    order:1;
    text-align:center;
}

.about-left{
    width:100%;
    order:2;
}

.about-right h2{
    font-size:40px;
}

.about-right p{
    font-size:24px;
}



.img-wrapper{
    width:calc(50% - 5px);
    height:200px;
}


#services {
    padding: 70px 0;
}

.services-grid{
    grid-template-columns:1fr;
    max-width: 80%;
    gap: 40px;
}


.about-container{
    grid-template-columns:1fr;
    text-align:center;
}

.about-img img{
    width:100%;
    max-width:300px;
    height:auto;
}

#about .secondary-button {
    align-self: center;
}



footer{
    flex-direction:column;
    align-items:center;
    text-align:center;
    border-top: 1px solid #1a2f16;
}

.footer-left{
    width:100%;
}

.footer-links{
    flex-direction:column;
    gap:30px;
}

.footer-right{
    width:100%;
    justify-content:center;
}
}