@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #ff6b00;
    --dark-color: #111111;
    --light-color: #ffffff;
    --gray-color: #888888;
    --dark-gray: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

header {
    position: fixed;
    width: 100%;
    top: 20px;
    left: 0;
    z-index: 1000;
    padding: 0 15px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(34, 34, 34, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 12px 35px;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--light-color);
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 25px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #e0e0e0;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-orange {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 9px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-orange i {
    display: none;
}

.btn-orange:hover {
    background-color: #ff8c3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.mobile-menu-icon {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--light-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    header .container {
        padding: 10px 25px;
        border-radius: 50px;
        max-width: calc(100% - 30px);
        background-color: rgba(34, 34, 34, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    nav ul {
        background-color: rgba(40, 40, 40, 0.95);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: 0 0 20px 20px;
    }

    nav ul li a {
        color: var(--light-color);
    }

    .mobile-menu-icon {
        display: block;
    }
}

.hero {
    height: 100vh;
    background: transparent;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.orange-text {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down i {
    font-size: 24px;
    color: var(--light-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.page-padding {
    padding-top: 140px;
}

.collection {
    padding-bottom: 80px;
    background-color: var(--dark-color);
}

.collection h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
}

.collection-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--gray-color);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 480px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    background-color: #333;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    border-radius: 5px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-size: 22px;
}

.product-info p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
}

.btn-details {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    display: none;
}

.btn-details:hover {
    color: #ff8c3f;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-arrow i {
    color: var(--primary-color);
}

.btn-arrow:hover {
    background-color: var(--primary-color);
}

.btn-arrow:hover i {
    color: var(--light-color);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.popup-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.popup-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    header .container {
        padding: 10px 25px;
        border-radius: 50px;
        max-width: calc(100% - 30px);
        background-color: rgba(34, 34, 34, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(34, 34, 34, 0.95);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 0 0 30px 30px;
        padding: 10px 0 20px 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        display: flex;
    }

    nav ul.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    nav ul li {
        margin: 8px 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a.nav-link {
        padding: 8px 0;
        display: block;
        color: var(--light-color);
    }

    .mobile-menu-icon {
        display: block;
    }

    .btn-orange {
        width: auto;
        min-width: 180px;
        padding: 10px 25px;
        justify-content: center;
        margin: 15px auto 5px;
    }

    .btn-orange i {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .collection h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    max-width: 150px;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeIn 1.5s ease forwards;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.loading-bar-container {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 20px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-color, #ff6b00);
    animation: loading 2s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.background-image {
    display: none;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    display: block;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    filter: blur(5px) brightness(0.7);
    object-fit: cover;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    max-width: 150px;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeIn 1.5s ease forwards;
}

.loading-bar-container {
    width: 200px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 20px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-color, #ff6b00);
    animation: loading 2s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#background-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-logo {
    max-height: 40px;
    width: auto;
}

.btn-arrow i {
    color: var(--primary-color);
}

.btn-arrow:hover {
    background-color: var(--primary-color);
}

.btn-arrow:hover i {
    color: var(--light-color);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.popup-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.popup-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    header .container {
        padding: 10px 25px;
        border-radius: 50px;
        max-width: calc(100% - 30px);
        background-color: rgba(34, 34, 34, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(34, 34, 34, 0.95);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 0 0 30px 30px;
        padding: 10px 0 20px 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        display: flex;
    }

    nav ul.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    nav ul li {
        margin: 8px 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a.nav-link {
        padding: 8px 0;
        display: block;
        color: var(--light-color);
    }

    .mobile-menu-icon {
        display: block;
    }

    .btn-orange {
        width: auto;
        min-width: 180px;
        padding: 10px 25px;
        justify-content: center;
        margin: 15px auto 5px;
    }

    .btn-orange i {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .collection h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    max-width: 150px;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeIn 1.5s ease forwards;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.loading-bar-container {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 20px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-color, #ff6b00);
    animation: loading 2s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.background-image {
    display: none;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    display: block;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    filter: blur(5px) brightness(0.7);
    object-fit: cover;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    max-width: 150px;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeIn 1.5s ease forwards;
}

.loading-bar-container {
    width: 200px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 20px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-color, #ff6b00);
    animation: loading 2s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#background-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-logo {
    max-height: 40px;
    width: auto;
}

.btn-arrow i {
    color: var(--primary-color);
}

.btn-arrow:hover {
    background-color: var(--primary-color);
}

.btn-arrow:hover i {
    color: var(--light-color);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.popup-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.popup-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

footer {
    background-color: rgba(17, 17, 17, 0.9);
    color: var(--gray-color);
    padding: 80px 0 0;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

.footer-logo {
    flex-basis: 15%;
    min-width: 120px;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

.footer-about {
    flex-basis: 45%;
    flex-grow: 1;
}

.footer-about h4 {
    font-size: 18px;
    color: var(--light-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-about p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-contact {
    flex-basis: 25%;
    min-width: 200px;
}

.footer-contact h4 {
    font-size: 18px;
    color: var(--light-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-icon {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #666;
}

@media (max-width: 992px) {
    .footer-content {
        gap: 30px;
    }
    .footer-logo, .footer-about, .footer-contact {
        flex-basis: 48%;
    }
    .footer-about {
        order: 3;
    }
     .footer-contact {
        order: 2;
    }
     .footer-logo {
        order: 1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo, .footer-about, .footer-contact {
        flex-basis: 100%;
        width: 100%;
        max-width: 450px;
        order: 0;
    }
     .footer-about h4, .footer-contact h4 {
        margin-top: 20px;
    }
    .footer-contact p {
       justify-content: center;
    }
}

.image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.image-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: block;
    margin: auto;
    cursor: default;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.image-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.image-modal-close:hover,
.image-modal-close:focus {
    color: #bbb;
    text-decoration: none;
}

@media (max-width: 700px){
    .image-modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    .image-modal-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}