/* =========================================
   URG - MAIN STYLE
   Unik Gåva
========================================= */

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f6f2;
    color: #333;
    line-height: 1.6;
}


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

header {
    min-height: 90px;
    background: #1f3a2d;

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

    padding: 12px 60px;

    position: relative;
    z-index: 1000;
}


/* ===== Logo ===== */

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-area h1 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1;
}

.logo-area p {
    color: white;
    font-size: 14px;
    margin-top: 4px;
}


/* ===== Navigation ===== */

header nav {
    display: flex;
    align-items: center;
}

header nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: color .3s ease;
}

header nav a:hover {
    color: #d4af37;
}


/* =========================================
   MOBILE MENU ICON
========================================= */

.menu-icon {
    display: none;

    color: #d4af37;
    font-size: 34px;

    cursor: pointer;

    user-select: none;
}


/* =========================================
   LANGUAGE SELECTOR
========================================= */

.language-selector {
    position: relative;
    margin-left: 25px;
    z-index: 9999;
}


/* Main language button */

.language-button {
    display: flex !important;
    align-items: center;
    justify-content: center;

    min-width: 125px;
    height: 42px;

    padding: 0 16px !important;
    margin: 0 !important;

    background: transparent !important;

    color: #f8f6f2 !important;

    border: 1px solid rgba(212,175,55,.65) !important;

    border-radius: 25px !important;

    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;

    cursor: pointer;

    box-shadow: none !important;

    transition: all .3s ease;
}

.language-button:hover {
    background: rgba(212,175,55,.10) !important;
    border-color: #d4af37 !important;
    transform: translateY(-1px);
}

.language-button span {
    margin-left: 7px;
    color: #d4af37;
}


/* Dropdown */

.language-menu {
    display: none;

    position: absolute;

    top: 52px;
    right: 0;

    width: 190px;

    padding: 8px;

    background: rgba(255,255,255,.98);

    border: 1px solid rgba(212,175,55,.25);

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0,0,0,.16);

    z-index: 99999;

    animation: languageFade .2s ease;
}

.language-menu.active {
    display: block;
}

@keyframes languageFade {

    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Language buttons */

.language-menu button {
    display: flex !important;
    align-items: center;

    width: 100% !important;
    height: 43px;

    padding: 0 12px !important;
    margin: 0 !important;

    background: transparent !important;

    color: #333 !important;

    border: none !important;
    border-radius: 9px !important;

    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;

    text-align: left;

    cursor: pointer;

    box-shadow: none !important;

    transition: all .2s ease;
}

.language-menu button:hover {
    background: #1f3a2d !important;
    color: white !important;
}


/* Language code */

.lang-code {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 24px;

    margin-right: 12px;

    border-radius: 5px;
    background: #1f3a2d;

    color: #d4af37;

    font-size: 10px;
    font-weight: 600;
}


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

.hero {
    height: 420px;

    background-image: url("images/header.jpg");

    background-size: cover;
    background-position: center;

    position: relative;
}

.overlay {
    width: 100%;
    height: 100%;

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

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    padding: 0 80px;
}

.overlay h2 {
    max-width: 800px;

    color: white;

    font-family: 'Playfair Display', serif;

    font-size: 46px;

    line-height: 1.2;
}

.overlay p {
    max-width: 650px;

    color: white;

    margin-top: 18px;

    font-size: 20px;
}


/* =========================================
   PRODUCTS
========================================= */

.products {
    padding: 75px 40px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 280px));

    justify-content: center;

    gap: 30px;
}

.products h2 {
    grid-column: 1 / -1;

    text-align: center;

    margin-bottom: 15px;

    font-family: 'Playfair Display', serif;

    font-size: 38px;

    color: #1f3a2d;
}


/* Product card */

.product-card {
    width: 100%;

    background: white;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,.10);

    text-align: center;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.14);
}


/* Product image */

.product-card img {
    width: 100%;
    height: 260px;

    object-fit: cover;

    display: block;
}


/* Product title */

.product-card h3 {
    margin: 18px 15px 8px;

    font-size: 21px;

    color: #333;
}


/* Product description */

.product-card p {
    min-height: 48px;

    margin: 8px 18px;

    color: #666;

    font-size: 14px;
}


/* Price */

.product-card span {
    display: block;

    color: #8b6f47;

    font-size: 23px;

    font-weight: 600;

    margin: 15px 0;
}


/* Product button */

.product-card button {
    background: #8b6f47;

    color: white;

    border: none;

    padding: 12px 28px;

    border-radius: 30px;

    cursor: pointer;

    font-family: 'Montserrat', sans-serif;

    font-size: 15px;

    margin-bottom: 22px;

    transition: all .3s ease;
}

.product-card button:hover {
    background: #735b3c;

    transform: translateY(-1px);
}


/* =========================================
   WHY URG
========================================= */

.why-urg {
    background: #f8f6f2;

    padding: 75px 40px;

    text-align: center;
}

.why-urg h2 {
    font-family: 'Playfair Display', serif;

    font-size: 34px;

    color: #1f3a2d;

    margin-bottom: 40px;
}

.features {
    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}

.feature {
    width: 280px;

    background: white;

    padding: 30px;

    border-radius: 18px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.08);
}

.feature h3 {
    color: #8b6f47;

    margin-bottom: 15px;

    font-size: 19px;
}

.feature p {
    color: #555;

    line-height: 1.7;
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: #1f3a2d;

    color: white;

    padding: 75px 40px;

    text-align: center;
}

.about > h2 {
    font-family: 'Playfair Display', serif;

    font-size: 38px;

    color: #d4af37;

    margin-bottom: 20px;
}

.about > p {
    max-width: 800px;

    margin: auto;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   CONTACT
========================================= */

.contact-info {
    margin-top: 50px;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;

    color: #d4af37;

    font-size: 30px;
    margin-bottom: 20px;
}

.contact-info p {
    display: inline-block;

    background: rgba(255,255,255,.08);

    color: #f5f1e8;

    padding: 8px 25px;

    border-radius: 20px;

    margin: 6px;

    font-size: 16px;
}


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

footer {
    background: #1f3a2d;

    color: white;

    text-align: center;

    padding: 40px 20px;
}

footer h3 {
    font-family: 'Playfair Display', serif;

    color: #d4af37;

    font-size: 26px;

    margin-bottom: 10px;
}

footer p {
    margin: 10px;

    font-size: 15px;
}

.copyright {
    margin-top: 25px;

    font-size: 13px;

    opacity: .8;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    /* Header */

    header {
        min-height: auto;

        flex-wrap: wrap;

        padding: 15px 20px;
    }


    .logo-area {
        gap: 10px;
    }


    .logo-area img {
        width: 55px;
        height: 55px;
    }


    .logo-area h1 {
        font-size: 30px;
    }


    .logo-area p {
        font-size: 12px;
    }


    /* Menu icon */

    .menu-icon {
        display: block;
    }


    /* Navigation */

    header nav {
        display: none;

        width: 100%;

        flex-direction: column;

        align-items: center;

        background: #1f3a2d;

        padding: 15px 0;

        margin-top: 10px;

        border-radius: 12px;
    }


    header nav.active {
        display: flex;
    }


    header nav a {
        margin: 8px 0;

        font-size: 15px;
    }


    /* Language */

    .language-selector {
        width: 100%;

        display: flex;

        justify-content: center;

        margin: 10px 0 0;
    }


    .language-menu {
        left: 50%;

        right: auto;

        transform: translateX(-50%);
    }


    /* Hero */

    .hero {
        height: 360px;

        background-position: center;
    }


    .overlay {
        align-items: center;

        text-align: center;

        padding: 20px;
    }


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


    .overlay p {
        font-size: 16px;

        margin-top: 15px;
    }


    /* Products */

    .products {
        padding: 55px 20px;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 22px;
    }


    .products h2 {
        font-size: 30px;

        margin-bottom: 15px;
    }


    .product-card {
        width: 100%;

        max-width: 340px;

        margin: auto;
    }


    .product-card img {
        height: 260px;
    }


    .product-card h3 {
        font-size: 21px;
    }


    /* Why URG */

    .why-urg {
        padding: 55px 20px;
    }


    .why-urg h2 {
        font-size: 29px;
    }


    .features {
        flex-direction: column;

        align-items: center;

        gap: 20px;
    }


    .feature {
        width: 100%;

        max-width: 340px;
    }


    /* About */

    .about {
        padding: 55px 20px;
    }


    .about > h2 {
        font-size: 30px;
    }


    .about > p {
        font-size: 15px;
    }


    /* Contact */

    .contact-info p {
        width: 100%;

        max-width: 340px;

        font-size: 14px;
    }


    /* Footer */

    footer {
        padding: 35px 15px;
    }


    footer h3 {
        font-size: 23px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .overlay h2 {
        font-size: 28px;
    }


    .overlay p {
        font-size: 15px;
    }


    .products {
        padding-left: 15px;
        padding-right: 15px;
    }


    .product-card img {
        height: 230px;
    }


    .language-button {
        min-width: 115px;
    }

}