/*==================================================
  AURELIA Framework v1.0
  Author : Kenneth + ChatGPT
  Version : 1.0
==================================================*/


/*==================================================
  RESET
==================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",sans-serif;

    font-size:16px;

    line-height:1.7;

    color:var(--text);

    background:var(--background);

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

img{

    display:block;

    width:100%;

    height:auto;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

input,
textarea,
select{

    font:inherit;

}


/*==================================================
  VARIABLES
==================================================*/

:root{

    --primary:#B38B59;

    --primary-hover:#9E784A;

    --background:#111111;

    --surface:#1B1B1B;

    --surface-light:#242424;

    --white:#ffffff;

    --text:#F5F5F5;

    --gray:#9A9A9A;

    --border:#2C2C2C;

    --shadow:0 20px 60px rgba(0,0,0,.30);

    --radius:18px;

    --transition:.35s ease;

    --container:1400px;

}


/*==================================================
  GLOBAL
==================================================*/

body{

    background:var(--background);

    color:var(--text);

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}

section{

    padding:120px 0;

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:.80rem;

    color:var(--primary);

    margin-bottom:20px;

}

.section-title{

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:600;

    line-height:1.15;

    margin-bottom:20px;

}

.section-description{

    color:var(--gray);

    max-width:700px;

    margin:auto;

}


/*==================================================
  TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4{

    font-family:"Cormorant Garamond",serif;

    font-weight:600;

}

p{

    color:var(--gray);

    margin-bottom:20px;

}

strong{

    color:var(--white);

}

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
  BUTTON
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 36px;

    border-radius:999px;

    font-size:.95rem;

    font-weight:600;

    transition:var(--transition);

}

.btn--primary{

    background:var(--primary);

    color:#fff;

}

.btn--primary:hover{

    background:var(--primary-hover);

    transform:translateY(-3px);

}

.btn--outline{

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

    margin-left:15px;

}

.btn--outline:hover{

    background:#fff;

    color:#111;

}


/*==================================================
  LOADER
==================================================*/

.loader{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#111;

    z-index:9999;

}

.loader__logo{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    letter-spacing:10px;

    color:var(--white);

}

/*==================================================
  HEADER
==================================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.4s ease;

}

.header.scrolled{

    background:rgba(17,17,17,.78);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:0 5px 30px rgba(0,0,0,.25);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:180px;

    transition:.35s;

}

.header.scrolled .logo img{

    width:160px;

}

/*==============================
 Navigation
==============================*/

.navigation ul{

    display:flex;

    gap:42px;

}

.navigation a{

    position:relative;

    color:#fff;

    font-size:.95rem;

    font-weight:500;

    transition:.35s;

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.navigation a:hover::after,

.navigation a.active::after{

    width:100%;

}

.navigation a:hover{

    color:var(--primary);

}

/*==============================
 Mobile Button
==============================*/

.menu-button{

    display:none;

    width:44px;

    height:44px;

    flex-direction:column;

    justify-content:center;

    gap:6px;

}

.menu-button span{

    display:block;

    width:28px;

    height:2px;

    background:#fff;

    transition:.35s;

}

/*==================================================
 HERO
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/hero.jpg")
    center center / cover no-repeat;

}

/*==============================
 Overlay
==============================*/

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        rgba(0,0,0,.55),

        rgba(0,0,0,.45)

    );

}

/*==============================
 Slow Zoom
==============================*/

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/hero.jpg")
    center center / cover no-repeat;

    animation:heroZoom 18s linear infinite;

    z-index:-1;

}

/*==============================
 Content
==============================*/

.hero .container{

    position:relative;

    z-index:5;

}

.hero__content{

    max-width:720px;

}

.hero__tag{

    display:inline-block;

    color:var(--primary);

    letter-spacing:6px;

    text-transform:uppercase;

    margin-bottom:25px;

    font-size:.85rem;

}

.hero__title{

    font-size:clamp(4rem,7vw,6.5rem);

    line-height:1.05;

    margin-bottom:35px;

}

.hero__text{

    max-width:620px;

    font-size:1.1rem;

    color:#DDD;

    margin-bottom:45px;

}

.hero__buttons{

    display:flex;

    gap:18px;

}

/*==============================
 Scroll Down
==============================*/

.hero__scroll{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    text-align:center;

    font-size:.75rem;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#fff;

}

.hero__scroll span{

    display:block;

    width:2px;

    height:60px;

    background:rgba(255,255,255,.35);

    margin:0 auto 12px;

    position:relative;

    overflow:hidden;

}

.hero__scroll span::before{

    content:"";

    position:absolute;

    left:0;

    width:100%;

    height:18px;

    background:#fff;

    animation:scrollLine 2s infinite;

}

/*==================================================
 KEYFRAMES
==================================================*/

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

@keyframes scrollLine{

    0%{

        top:-20px;

    }

    100%{

        top:70px;

    }

}

/*==================================================
  ABOUT
==================================================*/

.about{

    background:var(--background);

}

.about__grid{

    display:grid;

    grid-template-columns:1.1fr 1fr;

    gap:80px;

    align-items:center;

}

.about__image{

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.about__image img{

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    transition:transform .8s ease;

}

.about__image:hover img{

    transform:scale(1.06);

}

.about__content{

    max-width:560px;

}

.about__content .section-title{

    margin-bottom:30px;

}

.about__content p{

    margin-bottom:22px;

    font-size:1rem;

    color:var(--gray);

}

.about .btn{

    margin-top:18px;

}


/*==================================================
  FEATURED PRODUCTS
==================================================*/

.products{

    background:var(--surface);

}

.products__grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}


/*==================================================
  PRODUCT CARD
==================================================*/

.product-card{

    background:var(--surface-light);

    border-radius:var(--radius);

    overflow:hidden;

    transition:all .45s ease;

    border:1px solid transparent;

}

.product-card:hover{

    transform:translateY(-12px);

    border-color:rgba(255,255,255,.08);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.product-card__image{

    overflow:hidden;

}

.product-card__image img{

    width:100%;

    aspect-ratio:4/3;

    object-fit:cover;

    transition:transform .8s ease;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card__content{

    padding:35px;

}

.product-card__content h3{

    font-size:2rem;

    margin-bottom:18px;

}

.product-card__content p{

    color:var(--gray);

    margin-bottom:28px;

}

.product-card__link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    transition:.35s ease;

}

.product-card:hover .product-card__link{

    letter-spacing:1px;

}


/*==================================================
  SECTION DIVIDER
==================================================*/

.products::before{

    content:"";

    display:block;

    width:80px;

    height:2px;

    background:var(--primary);

    margin:0 auto 70px;

    opacity:.6;

}


/*==================================================
  IMAGE EFFECT
==================================================*/

.about img,
.product-card img{

    will-change:transform;

}


/*==================================================
  CARD TRANSITION
==================================================*/

.product-card,
.about__image{

    transition:.45s ease;

}


/*==================================================
  WHY CHOOSE US
==================================================*/

.features{

    background:var(--background);

}

.features__grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    margin-top:60px;

}

.feature-item{

    padding:40px 35px;

    border:1px solid var(--border);

    border-radius:var(--radius);

    background:var(--surface);

    transition:all .4s ease;

}

.feature-item:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.feature-item__number{

    font-family:"Cormorant Garamond",serif;

    font-size:3rem;

    color:rgba(255,255,255,.08);

    margin-bottom:25px;

}

.feature-item h3{

    font-size:1.8rem;

    margin-bottom:18px;

}

.feature-item p{

    color:var(--gray);

    margin-bottom:0;

}

/*==================================================
  INDUSTRIES
==================================================*/

.industries{

    background:var(--surface);

}

.industries__grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.industry-card{

    overflow:hidden;

    border-radius:var(--radius);

    background:var(--surface-light);

    transition:.45s ease;

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.industry-card img{

    width:100%;

    aspect-ratio:4/3;

    object-fit:cover;

    transition:transform .8s ease;

}

.industry-card:hover img{

    transform:scale(1.08);

}

.industry-card h3{

    padding:28px 28px 10px;

    font-size:1.8rem;

}

.industry-card p{

    padding:0 28px 30px;

    color:var(--gray);

    margin-bottom:0;

}

/*==================================================
  TIMELINE
==================================================*/

.timeline{

    background:var(--background);

}

.timeline__wrapper{

    position:relative;

    max-width:900px;

    margin:70px auto 0;

    padding-left:60px;

}

.timeline__wrapper::before{

    content:"";

    position:absolute;

    left:18px;

    top:0;

    bottom:0;

    width:2px;

    background:rgba(255,255,255,.10);

}

.timeline__item{

    position:relative;

    padding:0 0 60px 35px;

}

.timeline__item:last-child{

    padding-bottom:0;

}

.timeline__item::before{

    content:"";

    position:absolute;

    left:-51px;

    top:8px;

    width:14px;

    height:14px;

    border-radius:50%;

    background:var(--primary);

    box-shadow:0 0 0 8px rgba(179,139,89,.15);

}

.timeline__year{

    display:inline-block;

    color:var(--primary);

    font-size:.9rem;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:12px;

}

.timeline__item h3{

    font-size:2rem;

    margin-bottom:15px;

}

.timeline__item p{

    color:var(--gray);

    max-width:600px;

    margin-bottom:0;

}


/*==================================================
  NEWS
==================================================*/

.news{

    background:var(--surface);

}

.news__grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.news-card{

    overflow:hidden;

    background:var(--surface-light);

    border-radius:var(--radius);

    transition:all .45s ease;

    border:1px solid transparent;

}

.news-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,255,255,.08);

    box-shadow:var(--shadow);

}

.news-card img{

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    transition:transform .8s ease;

}

.news-card:hover img{

    transform:scale(1.08);

}

.news-card__content{

    padding:32px;

}

.news-card__date{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary);

    font-size:.82rem;

    letter-spacing:2px;

    text-transform:uppercase;

}

.news-card h3{

    font-size:1.9rem;

    line-height:1.2;

    margin-bottom:18px;

}

.news-card p{

    color:var(--gray);

    margin-bottom:28px;

}

.news-card__link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    transition:all .35s ease;

}

.news-card:hover .news-card__link{

    gap:16px;

}


/*==================================================
  CTA
==================================================*/

.cta{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #181818 0%,
        #0f0f0f 100%
    );

    text-align:center;

}

.cta::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(179,139,89,.08);

    top:-250px;

    right:-180px;

    filter:blur(40px);

}

.cta .container{

    position:relative;

    z-index:2;

}

.cta__content{

    max-width:850px;

    margin:auto;

}

.cta .section-title{

    margin-bottom:25px;

}

.cta .section-description{

    margin-bottom:45px;

}

.cta__buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}


/*==================================================
  PREMIUM BUTTON EFFECT
==================================================*/

.btn{

    position:relative;

    overflow:hidden;

}

.btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.28),

        transparent

    );

    transition:left .7s ease;

}

.btn:hover::before{

    left:130%;

}


/*==================================================
  SECTION SPACING
==================================================*/

.news,
.cta{

    position:relative;

}

.news::after{

    content:"";

    display:block;

    width:80px;

    height:2px;

    margin:90px auto 0;

    background:rgba(255,255,255,.10);

}

/*==================================================
  FOOTER
==================================================*/

.footer{

    background:#0A0A0A;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer__grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding:90px 0 60px;

}

.footer__logo img{

    width:180px;

    margin-bottom:25px;

}

.footer__column h4{

    margin-bottom:25px;

    font-size:1.35rem;

    color:var(--white);

}

.footer__column p{

    color:var(--gray);

    max-width:320px;

}

.footer__column ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer__column a{

    color:var(--gray);

    transition:var(--transition);

}

.footer__column a:hover{

    color:var(--primary);

    padding-left:6px;

}

.footer__social{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer__bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer__bottom p{

    margin:0;

    color:#888;

    font-size:.9rem;

}

/*==================================================
  BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:35px;

    bottom:35px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    transform:translateY(-5px);

    background:var(--primary-hover);

}

/*==================================================
  LOADER
==================================================*/

.loader{

    transition:opacity .5s ease,
               visibility .5s ease;

}

.loader.hide{

    opacity:0;

    visibility:hidden;

}

/*==================================================
  UTILITIES
==================================================*/

.text-center{

    text-align:center;

}

.text-left{

    text-align:left;

}

.text-right{

    text-align:right;

}

.mt-0{margin-top:0!important;}
.mt-1{margin-top:10px!important;}
.mt-2{margin-top:20px!important;}
.mt-3{margin-top:30px!important;}
.mt-4{margin-top:40px!important;}
.mt-5{margin-top:60px!important;}

.mb-0{margin-bottom:0!important;}
.mb-1{margin-bottom:10px!important;}
.mb-2{margin-bottom:20px!important;}
.mb-3{margin-bottom:30px!important;}
.mb-4{margin-bottom:40px!important;}
.mb-5{margin-bottom:60px!important;}

/*==================================================
  FADE ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-40px);

    transition:all .8s ease;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

.fade-right{

    opacity:0;

    transform:translateX(40px);

    transition:all .8s ease;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

/*==================================================
  KEYFRAMES
==================================================*/

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.05);

    }

    100%{

        transform:scale(1);

    }

}

/*==================================================
  END
==================================================*/