*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#111;
    color:#fff;
    overflow-x:hidden;
}

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);
}

nav{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#fff;
    letter-spacing:2px;
}

nav ul{
    display:flex;
    list-style:none;
    flex-wrap:wrap;
}

nav ul li{
    margin-left:35px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-size:17px;
    transition:.3s;
}

nav ul li a:hover{
    color:#d4af37;
}

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
    background:#000;
}

.hero video{
    position:absolute;
    top:50%;
    left:50%;
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    transform:translate(-50%,-50%);
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.50);
}

.content{
    position:absolute;
    top:52%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:90%;
    z-index:2;
}

.content h1{
    font-size:70px;
    line-height:80px;
    margin-bottom:25px;
}

.content p{
    font-size:22px;
    color:#ddd;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn,
.btn2{
    text-decoration:none;
    padding:18px 45px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn{
    background:#d4af37;
    color:#111;
}

.btn:hover{
    background:white;
}

.btn2{
    border:2px solid white;
    color:white;
}

.btn2:hover{
    background:white;
    color:#111;
}

.preview{
    background:#181818;
    text-align:center;
    padding:100px 10%;
    opacity:0;
    transform:translateY(80px);
    transition:1s;
}

.preview.show{
    opacity:1;
    transform:translateY(0);
}

.preview h2{
    font-size:45px;
    margin-bottom:25px;
}

.preview p{
    font-size:20px;
    color:#ccc;
    max-width:900px;
    margin:auto;
    line-height:35px;
}

.page-hero{
    min-height:55vh;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.8)), url("images/house.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px 60px;
}

.page-hero h1{
    font-size:65px;
    margin-bottom:15px;
}

.page-hero p{
    font-size:22px;
    color:#ddd;
}

.about-section{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    padding:100px 10%;
    background:#151515;
}

.about-text h2{
    font-size:45px;
    margin-bottom:25px;
}

.about-text p{
    color:#ccc;
    font-size:18px;
    line-height:32px;
    margin-bottom:20px;
}

.about-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    border-radius:25px;
    padding:35px;
}

.about-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:#d4af37;
}

.about-card li{
    list-style:none;
    margin:15px 0;
    color:#ddd;
}

.about-card li::before{
    content:"✓ ";
    color:#d4af37;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    text-align:center;
    background:#111;
    padding:80px 10%;
}

.stats h2{
    font-size:50px;
    color:#d4af37;
}

.stats p{
    color:#ccc;
    font-size:18px;
}

.projects{
    padding:120px 10%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
    background:#181818;
}

.project-card{
    background:#222;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 0 25px rgba(0,0,0,.4);
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    aspect-ratio:16 / 9;
    height:auto;
    object-fit:cover;
    display:block;
}

.project-info{
    padding:25px;
}

.project-info h2{
    margin-bottom:15px;
}

.project-info p{
    color:#ccc;
    line-height:28px;
    margin-bottom:25px;
}

.project-info a{
    text-decoration:none;
    background:#d4af37;
    color:#111;
    padding:14px 28px;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.project-info a:hover{
    background:white;
}

.services{
    padding:120px 10%;
    background:#181818;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#222;
    padding:40px;
    border-radius:25px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.service-card span{
    font-size:50px;
}

.service-card h2{
    margin:20px 0 15px;
    color:#d4af37;
}

.service-card p{
    color:#ccc;
    line-height:28px;
}

.journal{
    padding:120px 10%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    background:#151515;
}

.journal-card{
    background:#222;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 0 20px rgba(0,0,0,.4);
}

.journal-card:hover{
    transform:translateY(-10px);
}

.journal-card img{
    width:100%;
    aspect-ratio:16 / 9;
    height:auto;
    object-fit:cover;
    display:block;
}

.journal-card h2{
    padding:25px 25px 10px;
}

.journal-card p{
    padding:0 25px;
    color:#ccc;
    line-height:28px;
}

.journal-card a{
    display:inline-block;
    margin:25px;
    padding:14px 28px;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.journal-card a:hover{
    background:white;
}

.contact-section{
    padding:120px 10%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    background:#181818;
}

.contact-info{
    background:#222;
    padding:40px;
    border-radius:20px;
}

.contact-info h2{
    margin-bottom:25px;
    font-size:35px;
    color:#d4af37;
}

.contact-info p{
    margin:20px 0;
    font-size:18px;
    color:#ddd;
}

.contact-form{
    background:#222;
    padding:40px;
    border-radius:20px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:18px;
    border:none;
    border-radius:12px;
    background:#333;
    color:white;
    font-size:16px;
}

.contact-form textarea{
    height:180px;
    resize:none;
}

.contact-form button{
    padding:18px;
    background:#d4af37;
    border:none;
    border-radius:50px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:white;
}

footer{
    background:#050505;
    text-align:center;
    padding:30px;
    color:#aaa;
}

/* MOBILE */
@media screen and (max-width:768px){

    header{
        background:rgba(0,0,0,.75);
    }

    nav{
        width:94%;
        flex-direction:column;
        padding:12px 0;
    }

    .logo{
        font-size:23px;
        margin-bottom:10px;
    }

    nav ul{
        justify-content:center;
        gap:10px;
    }

    nav ul li{
        margin:0;
    }

    nav ul li a{
        font-size:13px;
    }

    .hero{
        height:100svh;
        min-height:100svh;
    }

    .hero video{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center center;
    }

    .overlay{
        background:rgba(0,0,0,.45);
    }

    .content{
        top:55%;
        width:92%;
    }

    .content h1{
        font-size:31px;
        line-height:39px;
        margin-bottom:18px;
    }

    .content p{
        font-size:15px;
        margin-bottom:28px;
    }

    .buttons{
        flex-direction:column;
        align-items:center;
        gap:14px;
    }

    .btn,
    .btn2{
        width:230px;
        padding:15px 20px;
        text-align:center;
    }

    .preview{
        padding:65px 22px;
    }

    .preview h2{
        font-size:30px;
    }

    .preview p{
        font-size:16px;
        line-height:28px;
    }

    .page-hero{
        min-height:45vh;
        padding-top:135px;
    }

    .page-hero h1{
        font-size:40px;
    }

    .page-hero p{
        font-size:17px;
    }

    .about-section,
    .contact-section{
        grid-template-columns:1fr;
        padding:70px 22px;
    }

    .projects,
    .services,
    .journal{
        grid-template-columns:1fr;
        padding:70px 22px;
    }

    .project-card img,
    .journal-card img{
        height:220px;
    }

    .stats{
        grid-template-columns:1fr;
        gap:30px;
        padding:60px 22px;
    }

    .contact-info,
    .contact-form{
        padding:28px;
    }
}
/* =========================================
   LANGUAGE FLAGS - TOP RIGHT
========================================= */

.language-switcher{
    position:fixed;
    top:16px;
    right:20px;
    z-index:99999;

    display:flex;
    align-items:center;
    gap:7px;

    padding:6px 8px;

    background:rgba(0,0,0,.55);
    border:1px solid rgba(255,255,255,.15);
    border-radius:30px;

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 8px 25px rgba(0,0,0,.35);
}

.lang-btn{
    width:38px;
    height:38px;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:0;
    border:none;
    outline:none;

    border-radius:50%;
    background:rgba(255,255,255,.10);

    font-size:23px;
    cursor:pointer;

    transition:.25s;
}

.lang-btn:hover{
    transform:scale(1.12);
    background:rgba(255,255,255,.22);
}

.lang-btn.active-language{
    transform:scale(1.08);
    background:#d4af37;

    box-shadow:
        0 0 0 2px rgba(255,255,255,.20),
        0 5px 18px rgba(212,175,55,.40);
}

@media screen and (max-width:768px){

    .language-switcher{
        top:8px;
        right:8px;
        gap:5px;
        padding:5px 7px;
    }

    .lang-btn{
        width:33px;
        height:33px;
        font-size:20px;
    }
}
/* =========================================
   FIX - CONTACT + LANGUAGE FLAGS
========================================= */

/* PC / LAPTOP */
@media screen and (min-width: 769px){

    nav{
        width:95%;
        padding-right:190px;
    }

    nav ul{
        flex-wrap:nowrap;
    }

    nav ul li{
        margin-left:25px;
    }

    .language-switcher{
        position:fixed;
        top:16px;
        right:18px;
        z-index:99999;
    }
}


/* PHONE / IPHONE */
@media screen and (max-width:768px){

    header{
        min-height:120px;
    }

    nav{
        width:100%;
        padding:
            55px
            12px
            12px
            12px;
    }

    nav ul{
        width:100%;
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:8px 12px;
    }

    nav ul li{
        margin:0;
    }

    nav ul li a{
        font-size:13px;
        white-space:nowrap;
    }

    .language-switcher{
        position:fixed;
        top:8px;
        right:8px;
        z-index:99999;
    }
}
/* =========================================
   FINAL NAVBAR + FLAGS FIX
========================================= */

header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    z-index:10000 !important;
}

nav{
    width:100% !important;
    max-width:1400px !important;
    margin:0 auto !important;

    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    padding:18px 190px 18px 30px !important;
}

nav ul{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;

    flex-wrap:nowrap !important;

    gap:24px !important;

    margin:0 !important;
    padding:0 !important;

    list-style:none !important;
}

nav ul li{
    margin:0 !important;
    padding:0 !important;
}

nav ul li a{
    display:block !important;

    color:white !important;
    text-decoration:none !important;

    font-size:15px !important;

    white-space:nowrap !important;
}


/* FLAGS */

.language-switcher{
    position:absolute !important;

    top:50% !important;
    right:20px !important;

    transform:translateY(-50%) !important;

    display:flex !important;
    align-items:center !important;

    gap:6px !important;

    padding:5px 7px !important;

    background:rgba(0,0,0,.60) !important;

    border:1px solid rgba(255,255,255,.15) !important;

    border-radius:30px !important;

    z-index:99999 !important;
}

.lang-btn{
    width:34px !important;
    height:34px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:0 !important;

    border:none !important;

    border-radius:50% !important;

    background:rgba(255,255,255,.10) !important;

    font-size:20px !important;

    cursor:pointer !important;
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width:1050px){

    nav{
        padding:
            18px
            165px
            18px
            20px
            !important;
    }

    nav ul{
        gap:14px !important;
    }

    nav ul li a{
        font-size:13px !important;
    }

}


/* =========================================
   PHONE / IPHONE
========================================= */

@media screen and (max-width:768px){

    header{
        min-height:150px !important;
    }

    nav{
        width:100% !important;

        display:flex !important;
        flex-direction:column !important;

        align-items:center !important;

        padding:
            58px
            10px
            12px
            10px
            !important;
    }

    .logo{
        font-size:22px !important;
        margin-bottom:12px !important;
    }

    nav ul{
        width:100% !important;

        display:flex !important;

        justify-content:center !important;

        flex-wrap:wrap !important;

        gap:
            8px
            13px
            !important;
    }

    nav ul li{
        margin:0 !important;
    }

    nav ul li a{
        font-size:12px !important;
        white-space:nowrap !important;
    }

    .language-switcher{
        position:absolute !important;

        top:8px !important;
        right:8px !important;

        transform:none !important;

        gap:4px !important;
    }

    .lang-btn{
        width:31px !important;
        height:31px !important;

        font-size:18px !important;
    }

}
/* CELA KUKJA DA SE GLEDA */

.hero video{
    position:absolute !important;
    top:50% !important;
    left:50% !important;

    width:100% !important;
    height:100% !important;

    min-width:0 !important;
    min-height:0 !important;

    object-fit:contain !important;
    object-position:center !important;

    transform:
        translate(-50%, -50%)
        scale(.85) !important;
}
/* =========================================
   FINAL VIDEO FIX
========================================= */

.hero{
    position:relative !important;
    width:100% !important;
    height:100vh !important;
    min-height:100vh !important;
    overflow:hidden !important;
    background:#111 !important;
}

.hero .hero-video{
    position:absolute !important;

    top:50% !important;
    left:50% !important;

    width:100% !important;
    height:100% !important;

    min-width:100% !important;
    min-height:100% !important;

    display:block !important;

    object-fit:cover !important;
    object-position:center center !important;

    transform:translate(-50%, -50%) !important;

    z-index:0 !important;
}

.hero .overlay{
    position:absolute !important;
    inset:0 !important;

    background:rgba(0,0,0,.45) !important;

    z-index:1 !important;
}

.hero .content{
    position:absolute !important;
    z-index:2 !important;
}
/* ==================================================
   PROJECT CATEGORY MENU
================================================== */

.project-categories{
    width:100%;
    padding:90px 8% 120px;

    display:grid;
    grid-template-columns:repeat(2, 1fr);

    gap:25px;

    background:
        radial-gradient(
            circle at top left,
            rgba(212,175,55,.10),
            transparent 35%
        ),
        #141414;
}


.category-card{
    position:relative;

    min-height:310px;

    padding:38px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    overflow:hidden;

    text-decoration:none;
    color:white;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.02)
        );

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:24px;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


.category-card::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    top:-90px;
    right:-90px;

    border-radius:50%;

    background:
        rgba(212,175,55,.12);

    filter:blur(10px);

    transition:.4s;
}


.category-card:hover{
    transform:translateY(-10px);

    border-color:
        rgba(212,175,55,.55);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.35);
}


.category-card:hover::before{
    transform:scale(1.4);
}


.category-number{
    position:absolute;

    top:25px;
    left:30px;

    font-size:13px;

    letter-spacing:3px;

    color:
        rgba(255,255,255,.45);
}


.category-icon{
    font-size:43px;

    margin-bottom:22px;
}


.category-card h2{
    font-size:30px;

    margin-bottom:12px;
}


.category-card p{
    max-width:500px;

    color:#aaa;

    font-size:15px;

    line-height:1.8;

    margin-bottom:24px;
}


.category-card span{
    color:#d4af37;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;
}


/* POSLEDNATA KARTICKA */

.category-card:last-child{
    grid-column:1 / -1;
}



/* ==================================================
   GALLERY HERO
================================================== */

.gallery-hero{
    min-height:62vh;

    padding:
        160px
        8%
        80px;

    display:flex;
    align-items:center;

    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,.94),
            rgba(30,30,30,.85)
        );
}


.gallery-hero-content{
    max-width:850px;
}


.gallery-hero-content > span{
    display:block;

    margin-bottom:18px;

    color:#d4af37;

    font-size:13px;

    font-weight:600;

    letter-spacing:4px;
}


.gallery-hero h1{
    font-size:
        clamp(
            42px,
            7vw,
            82px
        );

    line-height:1.05;

    margin-bottom:22px;
}


.gallery-hero p{
    max-width:680px;

    color:#bbb;

    font-size:18px;

    line-height:1.8;

    margin-bottom:32px;
}


.gallery-hero a{
    display:inline-block;

    padding:
        15px
        26px;

    text-decoration:none;

    color:white;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius:40px;

    transition:.3s;
}


.gallery-hero a:hover{
    background:#d4af37;

    color:#111;

    border-color:#d4af37;
}



/* ==================================================
   PREMIUM 3 IMAGE GALLERY
================================================== */

.premium-gallery{
    padding:90px 7% 120px;

    display:grid;

    grid-template-columns:
        1.35fr
        1fr;

    grid-template-rows:
        repeat(2, 330px);

    gap:22px;

    background:#101010;
}


.gallery-item{
    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#222;
}


.gallery-large{
    grid-row:
        1 / 3;
}


.gallery-item img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .7s
        cubic-bezier(.2,.7,.2,1);
}


.gallery-item:hover img{
    transform:scale(1.07);
}


.gallery-item::after{
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.90),
            transparent 65%
        );

    pointer-events:none;
}


.gallery-overlay{
    position:absolute;

    left:28px;
    right:28px;
    bottom:26px;

    z-index:2;
}


.gallery-overlay span{
    display:block;

    margin-bottom:7px;

    color:#d4af37;

    font-size:12px;

    font-weight:600;

    letter-spacing:2px;
}


.gallery-overlay h2{
    font-size:25px;

    margin-bottom:5px;
}


.gallery-overlay p{
    color:#bbb;

    font-size:14px;
}



/* ==================================================
   TABLET
================================================== */

@media screen and (max-width:950px){

    .project-categories{
        grid-template-columns:1fr;
    }

    .category-card:last-child{
        grid-column:auto;
    }


    .premium-gallery{
        grid-template-columns:1fr;

        grid-template-rows:auto;
    }


    .gallery-large{
        grid-row:auto;
    }


    .gallery-item{
        height:390px;
    }

}



/* ==================================================
   PHONE / IPHONE
================================================== */

@media screen and (max-width:768px){

    .project-categories{
        padding:
            60px
            18px
            80px;

        gap:18px;
    }


    .category-card{
        min-height:285px;

        padding:28px;
    }


    .category-card h2{
        font-size:25px;
    }


    .category-card p{
        font-size:14px;
    }


    .gallery-hero{
        min-height:60vh;

        padding:
            160px
            22px
            70px;
    }


    .gallery-hero h1{
        font-size:42px;
    }


    .gallery-hero p{
        font-size:16px;
    }


    .premium-gallery{
        padding:
            60px
            16px
            80px;

        gap:16px;
    }


    .gallery-item{
        height:280px;

        border-radius:17px;
    }


    .gallery-overlay{
        left:20px;
        right:20px;
        bottom:20px;
    }


    .gallery-overlay h2{
        font-size:21px;
    }

}
/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal-item{
    opacity:0;
    transform:translateY(35px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-item.reveal-visible{
    opacity:1;
    transform:translateY(0);
}
/* ==================================================
   FACEBOOK CARD
   HOME - BOTTOM RIGHT
================================================== */

.facebook-card{
    position:absolute;

    right:24px;
    bottom:24px;

    z-index:20;

    display:flex;
    align-items:center;

    gap:10px;

    min-width:200px;

    padding:10px 13px;

    color:#fff;
    text-decoration:none;

    background:
        linear-gradient(
            135deg,
            rgba(15,15,15,.88),
            rgba(35,35,35,.72)
        );

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius:17px;

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.38);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* FACEBOOK ICON */

.facebook-icon{
    width:40px;
    height:40px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:8px;

    border-radius:12px;

    background:#1877f2;

    box-shadow:
        0 6px 18px
        rgba(24,119,242,.30);
}


.facebook-icon svg{
    width:100%;
    height:100%;

    display:block;

    fill:#fff;
}


/* FACEBOOK TEXT */

.facebook-text{
    display:flex;
    flex-direction:column;

    line-height:1.15;
}


.facebook-text small{
    margin-bottom:4px;

    color:
        rgba(255,255,255,.60);

    font-size:9px;

    text-transform:uppercase;

    letter-spacing:1.1px;
}


.facebook-text strong{
    color:#fff;

    font-size:13px;

    font-weight:600;

    white-space:nowrap;
}


/* ARROW */

.facebook-arrow{
    margin-left:auto;

    color:
        rgba(255,255,255,.65);

    font-size:17px;

    transition:
        transform .3s ease,
        color .3s ease;
}


/* HOVER */

.facebook-card:hover{
    transform:translateY(-5px);

    border-color:
        rgba(24,119,242,.65);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.45),

        0 0 25px
        rgba(24,119,242,.15);
}


.facebook-card:hover .facebook-arrow{
    transform:
        translate(3px,-3px);

    color:#fff;
}


/* ==================================================
   PHONE / IPHONE
================================================== */

@media screen and (max-width:768px){

    .facebook-card{
        right:10px;
        bottom:12px;

        min-width:auto;

        padding:8px 9px;

        gap:7px;

        border-radius:14px;
    }


    .facebook-icon{
        width:34px;
        height:34px;

        padding:7px;

        border-radius:10px;
    }


    .facebook-text small{
        font-size:7px;
    }


    .facebook-text strong{
        font-size:11px;
    }


    .facebook-arrow{
        font-size:14px;
    }

}
/* ==================================================
   FACADES - 20 IMAGE PREMIUM GALLERY
================================================== */

.facades-gallery{
    width:100%;

    padding:
        90px
        6%
        120px;

    display:grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:22px;

    background:
        radial-gradient(
            circle at top right,
            rgba(212,175,55,.08),
            transparent 30%
        ),
        #101010;
}


/* CARD */

.facade-item{
    position:relative;

    height:320px;

    overflow:hidden;

    border-radius:20px;

    background:#222;

    border:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.28);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


/* Nekoi karticki pogolemi */

.facade-item:nth-child(1),
.facade-item:nth-child(8),
.facade-item:nth-child(15){
    grid-column:span 2;
}


/* IMAGE */

.facade-item img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .7s
        cubic-bezier(.2,.7,.2,1);

    filter:
        brightness(.92);
}


/* DARK GRADIENT */

.facade-item::after{
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.92),
            rgba(0,0,0,.12) 65%,
            transparent
        );

    pointer-events:none;
}


/* TEXT */

.facade-overlay{
    position:absolute;

    left:24px;
    right:24px;
    bottom:22px;

    z-index:2;

    transform:
        translateY(6px);

    transition:
        transform .4s ease;
}


.facade-overlay span{
    display:block;

    margin-bottom:7px;

    color:#d4af37;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;
}


.facade-overlay h2{
    margin-bottom:5px;

    color:#fff;

    font-size:23px;

    line-height:1.2;
}


.facade-overlay p{
    color:
        rgba(255,255,255,.70);

    font-size:13px;
}


/* HOVER */

.facade-item:hover{
    transform:
        translateY(-8px);

    border-color:
        rgba(212,175,55,.50);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.42);
}


.facade-item:hover img{
    transform:
        scale(1.07);
}


.facade-item:hover .facade-overlay{
    transform:
        translateY(0);
}



/* ==================================================
   TABLET
================================================== */

@media screen and (max-width:1000px){

    .facades-gallery{
        grid-template-columns:
            repeat(2, 1fr);

        padding:
            70px
            4%
            100px;
    }


    .facade-item:nth-child(1),
    .facade-item:nth-child(8),
    .facade-item:nth-child(15){
        grid-column:span 1;
    }


    .facade-item{
        height:300px;
    }

}



/* ==================================================
   PHONE / IPHONE
================================================== */

@media screen and (max-width:650px){

    .facades-gallery{
        grid-template-columns:
            1fr;

        gap:16px;

        padding:
            55px
            15px
            80px;
    }


    .facade-item{
        height:270px;

        border-radius:16px;
    }


    .facade-item:nth-child(1),
    .facade-item:nth-child(8),
    .facade-item:nth-child(15){
        grid-column:auto;
    }


    .facade-overlay{
        left:18px;
        right:18px;
        bottom:18px;
    }


    .facade-overlay h2{
        font-size:20px;
    }


    .facade-overlay p{
        font-size:12px;
    }

}
/* ==================================================
   YARDS - 6 IMAGE PREMIUM GALLERY
================================================== */

.yards-gallery{
    width:100%;

    padding:
        90px
        6%
        120px;

    display:grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:22px;

    background:
        radial-gradient(
            circle at top left,
            rgba(212,175,55,.08),
            transparent 32%
        ),
        #101010;
}


/* CARD */

.yard-item{
    position:relative;

    height:330px;

    overflow:hidden;

    border-radius:20px;

    background:#222;

    border:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.30);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


/* PRVATA I SHestata MALKU POSHKIROKI EFEKT */

.yard-item:nth-child(1),
.yard-item:nth-child(6){
    grid-column:span 2;
}


/* IMAGE */

.yard-item img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .7s
        cubic-bezier(.2,.7,.2,1);
}


/* DARK GRADIENT */

.yard-item::after{
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.90),
            rgba(0,0,0,.10) 65%,
            transparent
        );

    pointer-events:none;
}


/* TEXT */

.yard-overlay{
    position:absolute;

    left:24px;
    right:24px;
    bottom:22px;

    z-index:2;
}


.yard-overlay span{
    display:block;

    margin-bottom:7px;

    color:#d4af37;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;
}


.yard-overlay h2{
    margin-bottom:5px;

    color:#fff;

    font-size:23px;

    line-height:1.2;
}


.yard-overlay p{
    color:
        rgba(255,255,255,.72);

    font-size:13px;
}


/* HOVER */

.yard-item:hover{
    transform:
        translateY(-8px);

    border-color:
        rgba(212,175,55,.50);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.42);
}


.yard-item:hover img{
    transform:
        scale(1.07);
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width:1000px){

    .yards-gallery{
        grid-template-columns:
            repeat(2, 1fr);

        padding:
            70px
            4%
            100px;
    }


    .yard-item:nth-child(1),
    .yard-item:nth-child(6){
        grid-column:span 1;
    }


    .yard-item{
        height:300px;
    }

}


/* ==================================================
   PHONE / IPHONE
================================================== */

@media screen and (max-width:650px){

    .yards-gallery{
        grid-template-columns:
            1fr;

        gap:16px;

        padding:
            55px
            15px
            80px;
    }


    .yard-item{
        height:270px;

        border-radius:16px;
    }


    .yard-item:nth-child(1),
    .yard-item:nth-child(6){
        grid-column:auto;
    }


    .yard-overlay{
        left:18px;
        right:18px;
        bottom:18px;
    }


    .yard-overlay h2{
        font-size:20px;
    }

}