/*
Theme Name: Hendra Agarwood
Theme URI: https://hendraagarwood.com
Author: PT Hendra Agarwood Mandiri
Description: Premium Corporate WordPress Theme
Version: 2.0
Text Domain: hendraagarwood
*/

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#ffffff;
    background:#111111;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
}

button{
    font:inherit;
    cursor:pointer;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,h2,h3,h4,h5,h6{
    font-weight:700;
    line-height:1.2;
    color:#ffffff;
}

h1{
    font-size:64px;
}

h2{
    font-size:42px;
}

h3{
    font-size:28px;
}

p{
    color:#dddddd;
    margin-bottom:20px;
}

/* =========================================================
   COLORS
========================================================= */

:root{

    --gold:#D4AF37;

    --gold-dark:#b99328;

    --white:#ffffff;

    --black:#111111;

    --gray:#999999;

    --section:#171717;

}
/* =========================================================
   HEADER
========================================================= */

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.35s ease;

    padding:20px 0;

    background:transparent;

}

.site-header.scrolled{

    background:rgba(17,17,17,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 5px 20px rgba(0,0,0,.25);

    padding:14px 0;

}

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

}

.logo{

    font-size:28px;

    font-weight:700;

    color:var(--gold);

    letter-spacing:.5px;

    white-space:nowrap;

}

/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation{

    flex:1;

    display:flex;

    justify-content:center;

}

.main-menu{

    display:flex;

    align-items:center;

    gap:36px;

}

.main-menu li{

    list-style:none;

}

.main-menu a{

    color:#ffffff;

    font-weight:500;

    font-size:15px;

    position:relative;

}

.main-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.main-menu a:hover::after{

    width:100%;

}

.main-menu a:hover{

    color:var(--gold);

}

/* =========================================================
   BUTTON
========================================================= */

.btn,

.header-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 32px;

    border-radius:50px;

    background:var(--gold);

    color:#111111;

    font-weight:700;

    transition:.35s;

}

.btn:hover,

.header-button:hover{

    background:#ffffff;

    transform:translateY(-2px);

}

.btn-outline{

    background:transparent;

    border:2px solid #ffffff;

    color:#ffffff;

}

.btn-outline:hover{

    border-color:var(--gold);

    background:var(--gold);

    color:#111111;

}
/* =========================================================
   HERO
========================================================= */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-bg{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    z-index:1;

    transform:scale(1.03);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.55) 40%,
        rgba(0,0,0,.35) 100%
    );

    z-index:2;

}

.hero-content{

    position:relative;

    z-index:3;

    max-width:720px;

    padding-top:80px;

}

.hero-subtitle{

    display:inline-block;

    margin-bottom:20px;

    color:var(--gold);

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}

.hero h1{

    font-size:64px;

    line-height:1.08;

    margin-bottom:28px;

}

.hero p{

    max-width:620px;

    font-size:20px;

    color:#eeeeee;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* =========================================================
   SECTION
========================================================= */

section{

    position:relative;

    padding:100px 0;

}

.section-title{

    font-size:42px;

    margin-bottom:20px;

}

.section-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;

}

.section-dark{

    background:#171717;

}

.section-light{

    background:#1d1d1d;

}
/* =========================================================
ABOUT US
========================================================= */

.about-section{
background:#171717;
}

.about-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-image{
overflow:hidden;
border-radius:16px;
}

.about-image img{
width:100%;
height:520px;
object-fit:cover;
transition:.5s ease;
}

.about-image:hover img{
transform:scale(1.04);
}

.about-content{
max-width:560px;
}

.about-content .section-title{
margin-bottom:25px;
}

.about-content p{
color:#cccccc;
}

@media(max-width:768px){

```
.about-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.about-image img{
    height:380px;
}
```

}
/* =========================================================
PRODUCT SHOWCASE
========================================================= */

.showcase-section{
background:#1d1d1d;
}

.showcase-heading{
max-width:700px;
margin-bottom:55px;
}

.showcase-heading p{
color:#cccccc;
font-size:18px;
}

.showcase-feature{
display:grid;
grid-template-columns:1.15fr .85fr;
gap:60px;
align-items:center;
margin-bottom:70px;
}

.showcase-feature-image{
overflow:hidden;
border-radius:16px;
}

.showcase-feature-image img{
width:100%;
height:480px;
object-fit:cover;
transition:.5s ease;
}

.showcase-feature-image:hover img{
transform:scale(1.04);
}

.showcase-feature-content{
max-width:500px;
}

.showcase-feature-content h3{
font-size:36px;
margin-bottom:25px;
}

.showcase-feature-content p{
color:#cccccc;
margin-bottom:30px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.product-card{
background:#171717;
border:1px solid rgba(212,175,55,.18);
border-radius:16px;
overflow:hidden;
transition:.35s ease;
}

.product-card:hover{
transform:translateY(-8px);
border-color:var(--gold);
}

.product-card img{
width:100%;
height:260px;
object-fit:cover;
}

.product-card-content{
padding:25px;
}

.product-card-content h3{
font-size:23px;
margin-bottom:12px;
}

.product-card-content p{
color:#bbbbbb;
margin-bottom:0;
}

@media(max-width:768px){

```
.showcase-feature{
    grid-template-columns:1fr;
    gap:35px;
}

.showcase-feature-image img{
    height:360px;
}

.product-grid{
    grid-template-columns:1fr;
}
```

}
/* =========================================================
LEGALITY
========================================================= */

.legality-section{
background:#171717;
}

.legality-wrapper{
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:70px;
align-items:center;
}

.legality-content{
max-width:520px;
}

.legality-content .section-title{
margin-bottom:25px;
}

.legality-content p{
color:#cccccc;
}

.legality-image{
overflow:hidden;
border-radius:16px;
background:#111111;
}

.legality-image img{
width:100%;
height:auto;
object-fit:contain;
transition:.5s ease;
}

.legality-image:hover img{
transform:scale(1.02);
}

@media(max-width:768px){

```
.legality-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}
```

}
/* =========================================================
GALLERY
========================================================= */

.gallery-section{
background:#1d1d1d;
}

.gallery-heading{
max-width:700px;
margin-bottom:50px;
}

.gallery-heading p{
color:#cccccc;
font-size:18px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-item{
position:relative;
overflow:hidden;
border-radius:14px;
min-height:260px;
background:#111111;
}

.gallery-item img{
width:100%;
height:100%;
min-height:260px;
object-fit:cover;
transition:.5s ease;
}

.gallery-item:hover img{
transform:scale(1.06);
}

.gallery-large{
grid-column:span 2;
grid-row:span 2;
min-height:540px;
}

.gallery-large img{
min-height:540px;
}

@media(max-width:768px){

```
.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-large{
    grid-column:auto;
    grid-row:auto;
    min-height:300px;
}

.gallery-item,
.gallery-item img,
.gallery-large,
.gallery-large img{
    min-height:300px;
}
```

}
/* =========================================================
CONTACT
========================================================= */

.contact-section{
background:#171717;
}

.contact-wrapper{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:70px;
align-items:center;
}

.contact-content{
max-width:620px;
}

.contact-content .section-title{
margin-bottom:25px;
}

.contact-content > p{
color:#cccccc;
font-size:18px;
}

.contact-details{
margin-top:40px;
}

.contact-item{
margin-bottom:25px;
}

.contact-label{
display:block;
color:var(--gold);
font-size:13px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
margin-bottom:5px;
}

.contact-item p{
margin-bottom:0;
}

.contact-item a{
color:#ffffff;
}

.contact-item a:hover{
color:var(--gold);
}

.contact-card{
padding:45px;
background:#111111;
border:1px solid rgba(212,175,55,.2);
border-radius:18px;
}

.contact-card h3{
font-size:30px;
margin-bottom:20px;
}

.contact-card p{
color:#bbbbbb;
margin-bottom:30px;
}

@media(max-width:768px){

```
.contact-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.contact-card{
    padding:30px;
}
```

}
/* =========================================================
FOOTER
========================================================= */

.site-footer{
background:#0b0b0b;
color:#ffffff;
}

.footer-wrapper{
display:grid;
grid-template-columns:1.4fr .7fr .9fr;
gap:60px;
padding:80px 0 60px;
}

.footer-logo{
color:var(--gold);
font-size:25px;
font-weight:700;
margin-bottom:20px;
}

.footer-brand p{
max-width:430px;
color:#999999;
}

.site-footer h3{
font-size:18px;
margin-bottom:22px;
}

.footer-links ul{
display:flex;
flex-direction:column;
gap:10px;
}

.footer-links a,
.footer-contact a{
color:#aaaaaa;
}

.footer-links a:hover,
.footer-contact a:hover{
color:var(--gold);
}

.footer-contact p{
color:#999999;
margin-bottom:10px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.08);
padding:22px 0;
}

.footer-bottom p{
margin:0;
color:#777777;
font-size:14px;
text-align:center;
}

@media(max-width:768px){

```
.footer-wrapper{
    grid-template-columns:1fr;
    gap:40px;
    padding:60px 0 40px;
}
```

}
/* =========================================================
WHY US
========================================================= */

.why-us-section{
background:#171717;
}

.why-us-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.why-us-image{
overflow:hidden;
border-radius:16px;
}

.why-us-image img{
width:100%;
height:560px;
object-fit:cover;
transition:.5s ease;
}

.why-us-image:hover img{
transform:scale(1.04);
}

.why-us-content{
max-width:560px;
}

.why-us-content .section-title{
margin-bottom:25px;
}

.why-us-content > p{
color:#cccccc;
margin-bottom:35px;
}

.why-us-list{
display:flex;
flex-direction:column;
gap:25px;
}

.why-us-item{
display:grid;
grid-template-columns:55px 1fr;
gap:18px;
align-items:start;
}

.why-us-number{
color:var(--gold);
font-size:18px;
font-weight:700;
}

.why-us-item h3{
font-size:21px;
margin-bottom:7px;
}

.why-us-item p{
color:#999999;
margin-bottom:0;
}

@media(max-width:768px){

```
.why-us-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.why-us-image img{
    height:380px;
}
```

}
