@font-face {
    font-family: 'Komu';
    src: url('./fonts/komu.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


h1,
h2,
h3,
.section-title,
.section-heading h2,
.hero-content h1,
.who-left h2,
.market-left h2{
    font-family:'Komu', serif;
    font-size:clamp(44px,4vw,68px);
    line-height:1.05;
    font-weight:400;
}


body{
    font-family:'Inter',sans-serif;
}


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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#111;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(92%,1400px);
    margin:auto;
}

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

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .3s;

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

}

header.scrolled{

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

    backdrop-filter:blur(12px);

}

header .container{
    height:120px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:220px;
}

.logo-icon{
    width:145px;
    margin-bottom:-10px;
    margin-left: -20px;
}

.logo-text{
    width:220px;
}

nav ul{
    display:flex;
    align-items:center;
    gap:42px;
}

nav ul li{
    position:relative;
}

nav ul li a{
    display:inline-block;
    position:relative;
    padding:10px 0;
    color:#fff;
    font-size:15px;
    font-weight:500;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;   /* yalnız mətnin altına */
    width:0;
    height:2px;
    background:#e53935;
    transition:width .35s ease;
}

nav ul li:hover a::after{
    width:100%;
}




/* =========================
   HAMBURGER
========================= */

.hamburger{

    display:none;

    width:34px;

    cursor:pointer;

}

.hamburger span{

    display:block;

    height:2px;

    background:#fff;

    margin:7px 0;

    transition:.35s;

}

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

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;
    margin-top: 0;
    padding-top: 0;

}

.hero-video{

    position:absolute;

    inset:0;

}

.hero video{

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.28)
    );

}

/* =========================
   CONTENT
========================= */

.hero-content{

    position:absolute;

    left:8%;

    top:52%;

    transform:translateY(-50%);

    z-index:5;

    max-width:760px;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(58px,5vw,92px);

    line-height:1;

    font-weight:500;

    margin-bottom:34px;

    letter-spacing:-1px;

}

.hero-content p{

    font-size:25px;

    line-height:1.5;

    max-width:520px;

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

}

.btn{

    display:inline-flex;

    margin-top:45px;

    padding:16px 34px;

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

    border-radius:50px;

    transition:.35s;

}

.btn:hover{

    background:#fff;

    color:#000;

}

/* =========================
   SVG RINGS
========================= */

.rings{

    position:absolute;

    right:-120px;

    top:-120px;

    width:900px;

    height:1200px;

    display:flex;

    justify-content:flex-end;

    gap:35px;

    pointer-events:none;

}

.ring{

    border-radius:999px;

    border:55px solid rgba(255,255,255,.16);

    height:100%;

}

.ring1{

    width:240px;

}

.ring2{

    width:180px;

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

}

.ring3{

    width:120px;

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

}

.ring4{

    width:70px;

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

}

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

.hero-content>*{

    opacity:0;

    transform:translateY(35px);

    animation:fadeUp .9s forwards;

}

.hero-content p{

    animation-delay:.25s;

}

.btn{

    animation:fadeUp .9s forwards;

    animation-delay:.45s;

    opacity:0;

}

@keyframes fadeUp{

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* ===================================
1400px
=================================== */

@media(max-width:1400px){

.hero-content{

left:6%;

max-width:650px;

}

.hero-content h1{

font-size:72px;

}

.rings{

right:-180px;

}

}

/* ===================================
1200px
=================================== */

@media(max-width:1200px){

nav ul{

gap:26px;

}

.hero-content h1{

font-size:62px;

}

.hero-content p{

font-size:22px;

}

.logo img{

width:150px;

}

.rings{

right:-280px;

opacity:.85;

}

}

/* ===================================
992px
=================================== */

@media(max-width:992px){

header .container{

height:82px;

}

nav{

position:fixed;

top:0;

right:-100%;

width:340px;

height:100vh;

background:#111;

display:flex;

align-items:center;

justify-content:center;

transition:.45s ease;

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

}

nav.active{

right:0;

}

nav ul{

flex-direction:column;

gap:30px;

}

nav a{

font-size:20px;

}

.hamburger{

display:block;

position:relative;

z-index:1001;

}

.hero-content{

left:45px;

right:45px;

max-width:520px;

}

.hero-content h1{

font-size:56px;

}

.hero-content p{

font-size:20px;

}

.rings{

display:none;

}

}

/* ===================================
768px
=================================== */

@media(max-width:768px){

.hero-content{

left:30px;

right:30px;

}

.hero-content h1{

font-size:48px;

line-height:1.05;

}

.hero-content p{

font-size:18px;

}

.btn{

padding:15px 28px;

}

}

/* ===================================
576px
=================================== */

@media(max-width:576px){

header .container{

height:72px;

}

.logo img{

width:120px;

}

.hero-content{

left:22px;

right:22px;

top:55%;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:17px;

line-height:1.6;

margin-top:15px;

}

.btn{

margin-top:35px;

padding:14px 26px;

font-size:15px;

}

nav{

width:100%;

}

}

/* ===================================
390px
=================================== */

@media(max-width:390px){

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:16px;

}

.btn{

width:100%;

justify-content:center;

}
}




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

.footer{

    background:#fff;

    color:#111;

    padding:90px 0 35px;

    border-top:1px solid #e8e8e8;

}

.footer-top{

    display:grid;

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

    gap:60px;

    padding-bottom:50px;

}

.footer-logo img{

    width:200px;

}

.footer-logo p{

    color:#666;

    line-height:1.9;

    max-width:420px;

}

.footer h4{

    font-size:22px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:25px;

    color:#D42027;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:14px;

}

.footer a{

    color:#666;

    transition:.35s;

}

.footer a:hover{

    color:#D42027;

    padding-left:6px;

}

.footer-contact p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.footer-contact a{

    display:block;

    margin-bottom:10px;

}

.footer-bottom{

    border-top:1px solid #ececec;

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-bottom p{

    color:#777;

}

.footer-social{

    display:flex;

    gap:16px;

}

.footer-social a{

    width:42px;

    height:42px;

    border:1px solid #ddd;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#555;

    transition:.35s;

}

.footer-social a:hover{

    background:#D42027;

    color:#fff;

    border-color:#D42027;

    transform:translateY(-4px);

}

/* Responsive */

@media(max-width:992px){

.footer-top{

grid-template-columns:1fr 1fr;

gap:40px;

}

.footer-bottom{

flex-direction:column;

gap:20px;

text-align:center;

}

}

@media(max-width:768px){

.footer-top{

grid-template-columns:1fr;

}

.footer{

padding:70px 0 30px;

}

}










.about-page{
    padding:140px 0;
    background:white;
   border:1px solid #ececec
}

.about-heading{
    max-width:850px;
    margin:0 auto 90px;
    text-align:center;
}

.about-heading span{
    color:#D62027;
    letter-spacing:4px;
    font-size:13px;
    font-weight:700;
}

.about-heading h1{
    margin:20px 0;
    font-family:'Komu',serif;
    font-size:clamp(50px,5vw,72px);
    color:black;
}

.about-heading p{
    color:#666666;
    font-size:19px;
    line-height:1.9;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:100px;
}

.about-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
}

.about-content h2{
    font-family:'Komu',serif;
    font-size:56px;
    margin:25px 0;
    color:black;
}

.about-content p{
    color:#666666;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
}


.about-btn{
    display:inline-flex;
    padding:16px 34px;
    background:#D62027;
    color:#fff;
    border-radius:8px;
    transition:.3s;
}

.about-btn:hover{
    background:#111;
}

.about-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.about-card{
    padding:45px;
    background:#111;
    border-radius:18px;
    color:#fff;
}

.about-card h3{
    color: #D42027;
    font-size:34px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
}

.about-card p{
    color:#bfbfbf;
    line-height:1.8;
}

.about-content span{
    color: red;
}

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
}

.about-cards{
    grid-template-columns:1fr;
}

.about-image img{
    height:420px;
}

.about-content h2{
    font-size:42px;
}

}