/* Нулиране на основните стилове */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fcfaf7; /* Светъл, топъл уеб фон с книжен оттенък */
    color: #2c3e50;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Контейнер */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Горна част - Лого */
header {
    text-align: center;
    padding: 40px 0;
}

.logo {
    max-width: 320px; /* Размерът на логото на Колхида */
    height: auto;
}

/* Основно съдържание (Две колони на десктоп) */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .main-content {
        flex-direction: row;
        text-align: left;
    }
    .content-text {
        flex: 1;
    }
    .content-image {
        flex: 1;
        text-align: center;
    }
}

/* Текстова зона */
.content-text h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.content-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4a5568;
}

/* Блок за препратка към Книжна борса */
.store-notice {
    background-color: #f3ece1;
    padding: 20px;
    border-left: 4px solid #8B0000;
    border-radius: 4px;
    margin-bottom: 30px;
}

.store-notice p {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 500;
}

.store-button {
    display: inline-block;
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.store-button:hover {
    color: #a00000;
    transform: translateX(3px);
}

.highlight-text {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #1a252f;
}

/* Форма за абонамент */
.subscription-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 500px;
}

.subscription-form input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.subscription-form input[type="email"]:focus {
    border-color: #8B0000;
}

.subscription-form button {
    background-color: #8B0000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscription-form button:hover {
    background-color: #a00000;
}

/* Зона за картинката */
.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06); 
}

/* Футър */
footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.95rem;
    color: #718096;
    border-top: 1px solid #edf2f7;
}

.footer-links {
    margin-top: 10px;
}

footer a {
    color: #8B0000;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}