@font-face {
  font-family: "Didot";
  src: url("Didot.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Didot";
  src: url("Didot-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Didot";
  src: url("Didot-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

.d2025-hero-container, .d2025-hero-section, 
.d2025-hero-section__title, .d2025-hero-section__description, 
.d2025-hero-section__link {
        font-family: 'Didot', serif !important;
    font-weight: 400 !important; /* регуляр */
}

.d2025-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    width: 100vw;
    font-family: 'Didot', serif;
    color: #000;
    background: #fff;
}

.d2025-hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: all 0.3s ease;
}

.d2025-hero-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.d2025-hero-section:hover .d2025-hero-section__image {
    transform: scale(1.05);
}

.d2025-hero-section__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    color: white;
    z-index: 2;
}

.d2025-hero-section__title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-family: 'Didot', serif;
}

.d2025-hero-section__description {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 24px;
    opacity: 0.9;
    font-family: 'Didot', serif;
}

.d2025-hero-section__link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    font-family: 'Didot', serif;
}

.d2025-hero-section__link:hover {
    opacity: 0.7;
}

/* Mobile styles */
@media (max-width: 768px) {
    .d2025-hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 200vh;
    }

    .d2025-hero-section__content {
        padding: 40px 24px;
    }

    .d2025-hero-section__title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .d2025-hero-section__description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .d2025-hero-section__link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .d2025-hero-section__content {
        padding: 32px 20px;
    }

    .d2025-hero-section__title {
        font-size: 24px;
    }

    .d2025-hero-section__description {
        font-size: 13px;
    }
}