@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #050505;
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Rozcestník bude vždy přes celou výšku obrazovky */
}

.main-header img {
    height: auto;
    margin-bottom: 20px;
}

.portal-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    width: 90%;
}

.portal-card {
    flex: 1;
    position: relative;
    height: 450px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    transition: all 0.4s ease;
    background-size: cover;
    background-position: center;
}

/* Obrázek na pozadí pro Beauty obdélník */
#card-beauty {
    background-image: url('https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?auto=format&fit=crop&w=800&q=80');
}

/* Obrázek na pozadí pro Hair obdélník */
#card-hair {
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=800&q=80');
}

/* Ztmavení fotek na pozadí */
.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(5, 5, 5, 0.75);
    transition: background-color 0.4s ease;
    z-index: 1;
}

/* Co se stane po najetí myší na obdélník */
.portal-card:hover .card-overlay {
    background-color: rgba(5, 5, 5, 0.3); /* Zesvětlení fotky */
}

.portal-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px); /* Karta mírně povyskočí nahoru */
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

/* Zajištění, aby byl text vždy nad ztmavenou fotkou */
.portal-card h2, .portal-card p, .portal-card .btn-enter {
    position: relative;
    z-index: 2;
}

.portal-card h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 2.8em;
    margin: 0 0 15px 0;
}

.portal-card p {
    color: #e0e0e0;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Tlačítko Vstoupit */
.btn-enter {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portal-card:hover .btn-enter {
    background-color: #d4af37;
    color: #000;
}

/* Na mobilu se obdélníky dají pod sebe */
@media (max-width: 768px) {
    .portal-container {
        flex-direction: column;
    }
    .portal-card {
        height: 350px;
    }
}