
/* ===== GLOBAL ===== */
:root {
    --bg-dark: #0b0f19;
    --text-light: #f5f1e8;
    --accent-gold: #c6a85a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: 
        linear-gradient(rgba(8,12,20,0.65), rgba(8,12,20,0.65)),
        url('hero.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    animation: fadeIn 2s ease forwards;
}

.location {
    letter-spacing: 3px;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: fadeIn 3s ease forwards;
}

.brand {
    position: absolute;
    bottom: 30px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    opacity: 0.7;
}
.brand img {
    height: 28px;
    opacity: 0.75;
}

/* ===== INFO ===== */
.info {
    padding: 100px 10%;
    text-align: center;
}

.info h2 {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    margin-bottom: 40px;
}

.info ul {
    list-style: none;
    max-width: 700px;
    margin: auto;
}

.info li {
    margin: 14px 0;
    font-weight: 300;
}

.launching {
    margin-top: 50px;
    font-style: italic;
    opacity: 0.9;
    font-size: 2.5rem;            /* większy tekst */
    font-family: 'Cormorant', serif;
    animation: pulse 2s infinite; /* animacja pulsowania */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);   /* lekki powiększenie */
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 10%;
    text-align: center;
}

.contact h2 {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    margin-bottom: 60px;
}

.contact a {
    color: inherit;         /* dziedziczy kolor tekstu z reszty sekcji */
    text-decoration: none;  /* usuwa podkreślenie */
    transition: color 0.3s;
}

.contact a:hover {
    color: var(--accent-gold); /* delikatna zmiana na złoty przy hover */
}
.contact .person {
    margin-bottom: 45px;
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    display: block;        /* kontakty jeden pod drugim */
    text-align: center;    /* wyśrodkowanie tekstu */
}

.contact .person span {
    display: inline-block; /* tylko tekst, pseudo-linia dopasowuje się do jego szerokości */
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}

.contact .person span::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%; 
    background: rgba(245, 241, 232, 0.2);
    margin-top: 10px;
}



.person {
    margin-bottom: 45px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.person strong {
    display: block;
    font-family: 'Cormorant', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* ===== ANIMACJA ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* mniej niż 100vh */
        background-position: top center; /* górna część obrazka widać */
    }

    .hero-content h1 {
        font-size: 2rem; /* tekst też dopasowany */
    }

    .location {
        font-size: 0.8rem;
    }
}