:root {
    --bg-dark: #120d0a;
    --bg-panel: #1d1511;
    
    --accent: #ffb83e;
    --accent-dark: #9a4a0d;
    
    --text: #f5eee8;
    --muted: #b9aaa0;
    
    --border:#5d3b23;
    
    --max-width: 1280px;
}

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

body {
	background-color: var(--bg-dark);
	color: var(--text);
	font-family: "Nunito", sans-serif;
}


h1,
h2,
.main-nav {
    font-family: "Lilita One", cursive;
}




section {
	border-bottom:1px solid var(--border);
}

/* CONTAINERS */

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.container-wide {
	width: min(1400px, 94%);
	margin: 0 auto;
}


/* HEADER */

.site-header{
	position: sticky;
	top: 0;
	z-index:100;
	background:rgba(24,15,11,.92);
	backdrop-filter: blur(22px);
    border-bottom:1px solid var(--border);
}

.site-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:90px;
}

@media(max-width:768px){
	.site-header .container{
		height:70px;
	}
}

.logo img{
    display:block;
    height:144px;
    transform: translateY(27px);
    
    filter:
        drop-shadow(0 3px 1px #dda870)
        drop-shadow(0 -3px 1px #dda870)
        drop-shadow(3px 0 1px #dda870)
        drop-shadow(-3px 0 1px #dda870)  
    
        drop-shadow(0 2px 111px #ee7934)
}

@media(max-width:768px){
	.logo img{
		height:99px;
		transform: translateY(16px);
		filter: none;
	}
}



/* NAV */

.main-nav{
    display:flex;
    gap:45px;
}

@media(max-width:768px){
	.main-nav{
		display:none;
	}
}

.main-nav a{
    text-decoration:none;
    color:var(--text);
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:18px;
    font-weight:600;
    transition:.25s;
}

.main-nav a:hover{
	color:var(--accent);
}

.download-btn{
    text-decoration:none;
    background:var(--accent);
    color:#1b120d;
    padding:14px 28px;
    border-radius:8px;
    font-weight:bold;
    transition:.25s;
}


/* HERO */

.hero {
    position: relative;
    min-height: 450px;

    display: flex;
    align-items: center;

    padding: 80px 0;

    background:
		rgba(0, 0, 0, 0.8)
		url("../images/hero_bg.png");

    background-size: cover;
    background-position: center 50%;
    overflow: hidden;
    background-blend-mode: multiply;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    text-shadow:
        3px 3px 11px rgba(0,0,0,1);
}

.hero-logo {
    display: block;
    width: min(420px, 100%);
    margin-bottom: 20px;
}
.hero-content h1 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: 2px;
}

.hero-content h1 span{
	color: var(--accent);
}


.hero-description {
    max-width: 520px;
    margin-bottom: 32px;

    color: var(--text-muted);

    font-size: 22px;
    line-height: 1.7;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

    border: 2px solid transparent;
    border-radius: 8px;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}


.hero-btn-primary {
    background: var(--accent);
    color: #1b120d;
}

.hero-btn-primary:hover {
    background: #ffbd3f;
}

.hero-btn-secondary {
    border-color: var(--accent);
    background: rgba(18, 13, 10, 0.5);
    color: var(--accent);
}

.hero-btn-secondary:hover {
    background: var(--accent);
    color: #1b120d;
}


@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 60px 0 30px;

    }

    .hero-container {
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-description {
        margin-inline: auto;
        font-size: 18px;
        line-height: 1.6;
        margin:11px;
    }

    .hero-buttons {
        justify-content: center;
    }

}


/* FEATURES */

.features {
    padding: 33px 0;
    background: var(--bg-dark);
}

.section-heading {
    margin: 0 auto 50px;
    text-align: center;
}

.section-label {
    margin-bottom: 10px;

    color: var(--accent);

    font-family: "Lilita One", sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    color: var(--text);

    font-family: "Lilita One", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.05;
    text-transform: uppercase;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    position: relative;

    padding: 11px 44px;

    background:
        linear-gradient(
            180deg,
            rgba(57, 35, 25, 0.96),
            rgba(28, 18, 14, 0.98)
        );

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

    text-align: center;

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.feature-card:hover {
    transform: scale(1.04);

    border-color: var(--accent);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(246, 163, 19, 0.08);
}

.feature-icon {
    display: block;

    width: auto;
    height: 92px;

    margin: 0 auto 11px;

    object-fit: contain;

    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.35));
}


.feature-card h3 {
    margin-bottom: 14px;

    color: var(--accent);

    font-family: "Lilita One", sans-serif;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-muted);

    font-size: 18px;
    line-height: 1.65;
}


@media (max-width: 600px) {

    .features {
        padding: 30px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card {
        display: grid;
        grid-template-columns: 76px 1fr;
        column-gap: 18px;

        padding: 20px;

        text-align: left;
    }

    .feature-icon {
        grid-row: 1 / 3;

        width: 76px;
        height: 76px;

        margin: 0;

        align-self: center;
    }

    .feature-card h3 {
        margin-bottom: 8px;
        font-size: 21px;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}


/* GALLERY */


/* NEWS */


/* FOOTER */
