:root{

    --gold:#CEA23C;

    --black:#0E0E0E;

    --white:#ffffff;

    --bg:#F7F5F2;

    --text:#222;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

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

    background:var(--bg);

    color:var(--text);

}

h1, h2, .logo{
    font-family: "Cormorant Garamond", serif;
}

p, a, li{
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

img{

    width:100%;

    display:block;

}

nav{

    position:fixed;

    top:0;

    width:100%;

    padding:25px 70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:100;

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

    backdrop-filter:blur(10px);

}

.logo{

    color:var(--gold);

    font-size:34px;

    letter-spacing:3px;

}

.logo span{
    font-size: 0.5em;   /* a MONESSERA méretének 45%-a */
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase; /* ha tetszik */
}

.nav-right{
    display:flex;
    align-items:center;
    gap:45px;
}

.language-switch{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    letter-spacing:2px;
}

.language-switch a{
    opacity: .6;
}

.language-switch a.active{
    opacity: 1;
    color: var(--gold);
    font-weight: 500;
}

.language-switch a:hover{
    color:var(--gold);
}

.language-switch span{
    color:rgba(255,255,255,.4);
}

nav ul{

    display:flex;

    list-style:none;

    gap:45px;

}

nav a{
    color:#F7F5F2;
    text-decoration:none;
    letter-spacing:2px;
    font-size:14px;
    position:relative;
    transition: color .35s ease;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:1px;
    background:#CEA23C;
    transition: width .35s ease;
}

nav a:hover{
    color:#CEA23C;
}

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:#0E0E0E;

}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background: url("assets/gorog-dark.png") center / cover no-repeat;
    opacity: .05;
    /*opacity: .15;*/
    /*filter: contrast(1.1) saturate(0.8);*/
    /*transform: scale(1.08);*/
    z-index: 0; /*új sor*/
}

.hero > *{ /*új szekció*/
    position: relative;
    z-index: 1;
}

@media (max-width:768px){

    .hero{
        padding: 120px 20px;
    }

.hero::before{
    background-image: url("assets/gorog-mobil.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: .1;
}

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    180deg,     
    rgba(0,0,0,.15),    
    rgba(0,0,0,.55)
    );

}

.hero-content{

    position:relative;

    text-align:center;

    color:#F7F5F2;

    z-index:5;

}

.hero h1{

    color:var(--gold);

    font-size:110px;

    letter-spacing:8px;

    padding: 50px;

}

.hero h2{

    max-width:100%;
    overflow-wrap:break-word;
    word-wrap:break-word;

    font-size:48px;

    margin:20px 0;

    font-weight:400;

    padding-bottom: 80px;

    padding-top: 20px;

}

.hero p{

    max-width:600px;

    margin:auto;

    line-height:1.9;

    color:#ddd;

}

.discover{

    display:inline-block;

    margin-top:45px;

    color:var(--gold);

    text-decoration:none;

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

    padding-bottom:6px;

}

.content-background{
    position: relative;
    overflow: hidden;
}

.content-background::before{
    content: "";

    position: absolute;
    inset: 0;

    background: url("assets/gorog.png")
                center center / contain
                repeat;

    opacity: 0.3;

    z-index: 0;
}

.content-background > *{
    position: relative;
    z-index: 1;
}

.quote{

    padding:180px 20px;

    padding-bottom: 250px;

    text-align:center;

}

.quote h2{

    font-size:60px;

    max-width:900px;

    margin:auto;

    color: #0E0E0E;

}

.about{

    padding:180px 10%;

}

.about .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.about-founder,
.about-credo {
    text-align: center;
}

.container1 {
    
    gap: 90px;

    align-items: flex-start;

    display: flex;

    flex-direction: column;

    padding:25px;
}

.container1 a {
        text-decoration: none;
        color: #F7F5F2;

}

.about h2{

    font-size:42px;

    color:var(--gold);

    margin-bottom:25px;

    font-weight: 400;

    letter-spacing: 1px;
}

.about h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
    color:#0E0E0E;
}

.about p{

    line-height:1.9;

    margin-bottom:20px;

    font-size: 18px;

}

.quote1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    line-height: 1.8;
    color: #0E0E0E;
}
.showcase-text h2{
    font-size: 36px;
}


/* kis elegáns elválasztó */

.about-credo {
    border-left: 1px solid rgba(0,0,0,0.12);
    padding-left: 60px;
}


/* kép */

.about-right {
    margin-top: 75px;
    text-align: center;
}

.brand-img {
    max-width: 550px;
    width: 100%;
}

@media (max-width: 768px) {

    .about {
        padding: 70px 0;
    }

    .about .container {
        padding: 0 15px;
    }


    .about-content {
        grid-template-columns: 1fr;
        gap: 70px;
    }


    .about-credo {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.12);
        padding-left: 0;
        padding-top: 60px;
    }


    .about h2 {
        font-size: 32px;
    }


    .quote1 {
        font-size: 21px;
        line-height: 1.7;
    }
    .showcase-text h2 {
        font-size: 36px;
    }


    .about-right {
        margin-top: 50px;
    }

}

.brands{

    padding:160px 10%;

}

.brand{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    margin-bottom:180px;

}

.about,
.brands {
    opacity: 0;
    transform: translateY(80px);
    filter: blur(2px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.about.show,
.brands.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reverse img{

    order:2;

}

.reverse div{

    order:1;

}

.brand h2{

    font-size:54px;

    color:#D8B45B;

    margin-bottom:25px;

}

.brand p {

    line-height:1.9;

    margin-bottom:20px;

    font-size: 24px;

}

.contact{

    position: relative;
    overflow: hidden;

    background:var(--black);

    color:#D8B45B;

    text-align: center;

    padding:180px 20px;

    -webkit-text-size-adjust: 100%;

}

.contact::before{
    content:"";
    position:absolute;
    inset:0;
    background: url("assets/gorog-dark.png") center / cover no-repeat;
    opacity: .15;
    z-index: 0;
    filter: brightness(.55);
}

.contact > *{
    position: relative;
    z-index: 1;
}

@media (max-width:768px){

    .contact{
        padding: 120px 20px;
    }

.contact::before{
    background-image: url("assets/gorog-mobil.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: .25;
}

}

.contact::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.65)
    );

    z-index:0;
}

.contact h2{

    font-size:80px;

    color:var(--gold);

    margin-bottom:100px;

}

.contact p{

    margin-bottom:15px;
    color:#D8B45B;
    line-height: 1.9;

}

.contact a{
    color:#D8B45B;
    text-decoration: none;
    display: inline-block;
    transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact a:hover{
    color: var(--gold);
    transform: translateY(-4px);
}

footer{

    background:var(--black);

    color:#999;

    text-align:center;

    padding:30px;

    font-size: 14px;

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

}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

footer a {
    color:#999;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s;
}

footer a:hover {
    color: #CEA23C;
}

.brand-img{
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.legal {
    padding: 120px 20px 80px;
    background: #0E0E0E;
    color: #e6e6e6;
}

.legal .container {
    max-width: 800px;
    margin: 0 auto;
}

.legal h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.legal h2 {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #c9a86a; /* gold accent */
}

.legal p {
    font-weight: 300;
    line-height: 1.9;
    margin-top: 10px;
    color: #cfcfcf;
}

.legal .small {
    margin-top: 40px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 1024px){

    nav{
        padding: 22px 40px;
    }

    .logo {
        font-size: 30px;
    }
    .logo span {
        font-size: 0.55em;
    }

    .hero h1{
        font-size: 90px;
        letter-spacing: 7px;
    }

    .hero h2{
        font-size: 42px;
    }

    .hero p{
        font-size:18px;
        line-height:1.9;
        max-width:620px;
    }

    .quote h2{
        font-size: 40px;
    }

    .about h2,
    .brand h2,
    .contact h2{
        font-size:52px;
    }

    .about p,
    .brand p{
        font-size:18px;
        line-height:1.9;
    }

    .container,
    .brand{
        gap: 60px;
    }

    .about,
    .brands{
        padding: 120px 8%;
    }

    .brand {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .brand-img{
        max-width: 520px;
    }

    .reverse img{
        order:1;
    }

    .reverse div{
        order:2;
    }
}

@media (max-width: 768px){

    /* NAV */
    nav{
        padding: 18px 20px;
    }

    .content-background::before{

        opacity: 0.4;

    }

    nav ul{
        display: none;
    }

    .language-switch{
        font-size: 11px;
        letter-spacing: 2px;
    }

    .logo{
        font-size:28px;
    }
    .logo span {
        font-size: 0.55em;
    }

    /* HERO */
    .hero h1{
        font-size: 56px;
        letter-spacing: 4px;
    }

    .hero h2{
        font-size: 30px;
        margin: 18px 0;
    }

    .hero p{
        font-size: 17px;
        line-height: 1.8;
        padding: 0 10px;
    }

    .quote {
        padding:140px 20px;
    }

    .quote h2{
        font-size: 40px;
        line-height: 1.4;
    }

    /* SECTIONS */
    .about,
    .brands{
        padding: 90px 20px;
    }

    .container,
    .brand{
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about p,
    .brand p{
        font-size:18px;
        line-height:1.9;
    }

    .brand {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    /* IMAGES */
    .brand-img{
        max-width: 450px;
    }

    .contact h2{
        font-size: 38px;
    }

    .contact p{
        font-size: 17px;
    }

    /* FOOTER */
    footer{
        font-size: 13px;
    }

    .reverse img{
        order:1;
    }

    .reverse div{
        order:2;
    }
}

.brand-showcase{
    max-width:1200px;
    margin:120px auto;
    padding:0 40px;
    margin-top: 100px;
}

.showcase-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    margin-top:250px;
}

.showcase-row.reverse{
    flex-direction:row-reverse;
}

.showcase-image,
.showcase-text{
    flex:1;
}

.showcase-image{
    display:flex;
}

.showcase-row .showcase-image{
    justify-content:flex-start;
}

.showcase-row.reverse .showcase-image{
    justify-content:flex-end;
}

.brand-img{
    max-width:525px;
    width:100%;
    display:block;
}


.brand-showcase {
    max-width: 1400px;
    margin: 70px auto;
    padding: 0 50px;
    margin-top: 150px;
}

@media (max-width:768px){

    .showcase-row,
    .showcase-row.reverse{
        flex-direction:column;
        gap:40px;
        margin-top:100px;
    }

    .showcase-image{
        justify-content:center !important;
    }

    .showcase-text{
        min-height:auto;
        text-align:center;
    }
.brand-showcase {
    max-width: 1400px;
    padding: 0 20px;
    margin-top: 50px;
}

}

.showcase-image,
.showcase-text {
    flex: 1;
}

.showcase-image {
    display: flex;
    justify-content: center;
}

.brand-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.showcase-text h2 {
    margin-bottom: 20px;
    text-align: center;
}

.showcase-text h3 {
    margin-bottom: 30px;
    text-align: center;
}

.showcase-text .quote {
    max-width: 550px;
    line-height: 1.9;
}

.quote1 {
    padding:90px 20px;
}

.mobile-break{
    display:none;
}

@media (max-width:768px){
    .mobile-break{
        display:inline;
    }
}