/* ======================================================
   Architecture Website Framework
   Components CSS
   Version 1.0
======================================================*/


/*==========================================
HEADER
==========================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:var(--header-height);

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    z-index:1000;

    transition:var(--transition);

}


/*==========================================
NAVBAR
==========================================*/

.navbar{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

}


/*==========================================
LOGO
==========================================*/

.logo{

    display:flex;

    align-items:center;
    padding-top:8px;

}

.logo img{

    height:90px;

    width:auto;

}


/*==========================================
NAVIGATION
==========================================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:45px;

}

.nav-menu li{

    position:relative;

}

.nav-menu a{

    position:relative;

    font-family:var(--body-font);

    font-size:15px;

    font-weight:600;

    color:var(--primary);

    transition:var(--transition);

}


/* Navigation underline */

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:var(--transition);

}

.nav-menu a:hover{

    color:var(--secondary);

}

.nav-menu a:hover::after{

    width:100%;

}


/*==========================================
MENU BUTTON
==========================================*/

.menu-btn{

    display:none;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:var(--primary);

    cursor:pointer;

    transition:var(--transition);

}

.menu-btn:hover{

    color:var(--secondary);

}


/*==========================================
BUTTONS
==========================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 36px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}


/*==========================================
PRIMARY BUTTON
==========================================*/

.btn-primary{

    background:var(--secondary);

    color:#fff;

    box-shadow:var(--shadow-sm);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}


/*==========================================
OUTLINE BUTTON
==========================================*/

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    background:transparent;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}


/*==========================================
LIGHT BUTTON
==========================================*/

.btn-light{

    background:#fff;

    color:var(--primary);

    box-shadow:var(--shadow-sm);

}

.btn-light:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}


/*==========================================
FULL WIDTH BUTTON
==========================================*/

.btn-block{

    width:100%;

}
/*======================================================
HERO
======================================================*/

.hero{

    padding-top:180px;

    background:var(--background);

    overflow:hidden;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:var(--section-gap);

    align-items:center;

}


/*==========================================
HERO CONTENT
==========================================*/

.hero-left{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.hero-tag{

    display:inline-block;

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:24px;

}

.hero-left h1{

    font-family:var(--heading-font);

    font-size:84px;

    font-weight:600;

    line-height:.95;

    color:var(--primary);

    margin-bottom:32px;

}

.hero-left p{

    max-width:520px;

    font-size:18px;

    line-height:1.9;

    color:var(--text-light);

    margin-bottom:50px;

}

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}


/*==========================================
HERO IMAGE
==========================================*/

.hero-right{

    position:relative;

}

.hero-right img{

    width:100%;

    height:820px;

    object-fit:cover;

    border-radius:var(--radius);

    box-shadow:var(--shadow-md);

}


/* Decorative Accent */

.hero-right::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    top:-30px;

    left:-30px;

    border:2px solid var(--accent-light);

    border-radius:var(--radius);

    z-index:-1;

}

.hero-right::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    right:-40px;

    bottom:-40px;

    background:var(--accent-light);

    border-radius:50%;

    opacity:.45;

    z-index:-1;

}


/*======================================================
SECTION TITLE
======================================================*/

.section-title{

    text-align:center;

    max-width:var(--max-text-width);

    margin:0 auto 80px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title h2{

    font-family:var(--heading-font);

    font-size:60px;

    font-weight:600;

    line-height:1.1;

    color:var(--primary);

    margin-bottom:24px;

}

.section-title p{

    font-size:17px;

    line-height:1.9;

    color:var(--text-light);

}


/* Left Aligned Version */

.section-title.left{

    text-align:left;

    margin:0 0 70px;

}
/*======================================================
FEATURED PROJECTS
======================================================*/

.featured-projects{

    background:var(--surface);

}

.projects{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

}


/*==========================================
PROJECT CARD
==========================================*/

.project{

    background:var(--surface);

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.project:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

}


/*==========================================
PROJECT IMAGE
==========================================*/

.project-image{

    overflow:hidden;

}

.project-image img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:transform .6s ease;

}

.project:hover .project-image img{

    transform:scale(1.05);

}


/*==========================================
PROJECT CONTENT
==========================================*/

.project-content{

    padding:32px;

}

.project-content h3{

    font-family:var(--heading-font);

    font-size:32px;

    font-weight:600;

    color:var(--primary);

    margin-bottom:10px;

}

.project-content p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:24px;

}


/*==========================================
PROJECT LINK
==========================================*/

.project-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:var(--secondary);

    transition:var(--transition);

}

.project-link:hover{

    gap:16px;

}


/*======================================================
ABOUT
======================================================*/

.about{

    background:var(--background);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:var(--section-gap);

    align-items:center;

}


/*==========================================
ABOUT IMAGE
==========================================*/

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:var(--radius);

    box-shadow:var(--shadow-md);

}

.about-image::after{

    content:"";

    position:absolute;

    right:-25px;

    bottom:-25px;

    width:180px;

    height:180px;

    border:2px solid var(--accent-light);

    border-radius:var(--radius);

    z-index:-1;

}


/*==========================================
ABOUT CONTENT
==========================================*/

.about-content span{

    display:inline-block;

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.about-content h2{

    font-family:var(--heading-font);

    font-size:60px;

    font-weight:600;

    color:var(--primary);

    line-height:1.1;

    margin-bottom:28px;

}

.about-content p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:24px;

}


/*==========================================
ABOUT FEATURES
==========================================*/

.about-features{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.about-feature{

    display:flex;

    align-items:flex-start;

    gap:15px;

}

.about-feature-icon{

    width:54px;

    height:54px;

    border-radius:50%;

    background:var(--accent-light);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--secondary);

    font-size:20px;

    flex-shrink:0;

}

.about-feature h4{

    font-size:18px;

    color:var(--primary);

    margin-bottom:6px;

}

.about-feature p{

    margin:0;

    font-size:15px;

    line-height:1.7;

}
/*======================================================
SERVICES
======================================================*/

.services{

    background:var(--surface);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

}


/*==========================================
SERVICE CARD
==========================================*/

.service-card{

    background:var(--surface);

    padding:50px 40px;

    border:1px solid var(--border);

    border-radius:var(--radius);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:0;

    background:var(--secondary);

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

    border-color:transparent;

}

.service-card:hover::before{

    height:100%;

}


/*==========================================
SERVICE NUMBER
==========================================*/

.service-number{

    font-family:var(--heading-font);

    font-size:64px;

    font-weight:600;

    color:rgba(232,90,28,.12);

    margin-bottom:30px;

    transition:var(--transition);

}

.service-card:hover .service-number{

    color:rgba(232,90,28,.28);

}


/*==========================================
SERVICE CONTENT
==========================================*/

.service-card h3{

    font-family:var(--heading-font);

    font-size:34px;

    color:var(--primary);

    margin-bottom:18px;

}

.service-card p{

    color:var(--text-light);

    line-height:1.9;

}


/*======================================================
INSTAGRAM
======================================================*/

.instagram{

    background:var(--background);

}

.instagram-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}


/*==========================================
INSTAGRAM IMAGE
==========================================*/

.instagram-item{

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

}

.instagram-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:transform .6s ease;

}

.instagram-item:hover img{

    transform:scale(1.08);

}


.instagram-button{

    text-align:center;

    margin-top:60px;

}


/*======================================================
CALL TO ACTION
======================================================*/

.cta{

    background:var(--surface);

}

.cta-box{

    background:var(--primary);

    color:#fff;

    padding:90px 70px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow-md);

}

.cta-box h2{

    font-family:var(--heading-font);

    font-size:64px;

    font-weight:600;

    line-height:1.1;

    margin-bottom:24px;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.85);

    line-height:1.9;

}

.cta-box .btn-primary{

    background:#fff;

    color:var(--primary);

}

.cta-box .btn-primary:hover{

    background:var(--secondary);

    color:#fff;

}
/*======================================================
FOOTER
======================================================*/

.footer{

    background:linear-gradient(
        135deg,
        #A35F3B 0%,
        #8A452A 45%,
        #6F311E 100%
    );

    color:#F8F4EE;

    padding:120px 0 0;

    position:relative;

    overflow:hidden;

}

/* Decorative watermark */

.footer::before{

    content:"VA";

    position:absolute;

    right:-30px;

    top:50%;

    transform:translateY(-50%);

    font-family:var(--heading-font);

    font-size:340px;

    font-weight:700;

    color:rgba(255,255,255,.04);

    pointer-events:none;

}

/*==========================================
FOOTER GRID
==========================================*/

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1.2fr;

    gap:90px;

    position:relative;

    z-index:2;

}

/*==========================================
LOGO
==========================================*/

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

}

.footer-logo img{

    height:70px;

    width:auto;

}

.footer-brand p{

    color:rgba(255,255,255,.82);

    line-height:1.9;

    margin:25px 0 35px;

}

/*==========================================
HEADINGS
==========================================*/

.footer h4{

    color:#F5C58A;

    font-size:18px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:35px;

    position:relative;

}

.footer h4::after{

    content:"";

    display:block;

    width:55px;

    height:2px;

    background:#F5C58A;

    margin-top:12px;

}

/*==========================================
LINKS
==========================================*/

.footer-links{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-links a{

    color:rgba(255,255,255,.82);

    transition:.3s ease;

}

.footer-links a:hover{

    color:#FFD29A;

    padding-left:8px;

}

/*==========================================
CONTACT
==========================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.footer-contact li{

    color:rgba(255,255,255,.82);

    line-height:1.8;

}

/*==========================================
SOCIAL
==========================================*/

.footer-social{

    display:flex;

    gap:14px;

    margin-top:35px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s ease;

}

.footer-social a:hover{

    background:#F5C58A;

    color:#6F311E;

    transform:translateY(-5px);

}

/*==========================================
COPYRIGHT
==========================================*/

.footer-bottom{

    margin-top:90px;

    padding:28px 0;

    background:rgba(0,0,0,.18);

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p,

.footer-bottom a{

    color:rgba(255,255,255,.72);

    font-size:15px;

}

.footer-bottom a:hover{

    color:#FFD29A;

}


/*==========================================
BACK TO TOP
==========================================*/

.back-to-top{

    position:fixed;

    right:35px;

    bottom:35px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:var(--shadow-md);

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-5px);

}
