/* ==========================================================================
   1. RESET I ZMIENNE
   ========================================================================== */
:root {
    --dark-1: #30383B;
    --dark-2: #626A6E;
    --gray-1: #9BA2A7;
    --gray-2: #CCD1D4;
    --gold-1: #FBB900;
    --gold-2: #FDC652;
    --gold-3: #FFDD94;
    --light: #FFEDCB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark-1);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ==========================================================================
   2. NAWIGACJA
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
    position: relative;
}

.logo-img { height: 55px; width: auto; }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    text-decoration: none;
    color: var(--dark-1);
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--gold-1); }

.btn-contact {
    background-color: var(--gold-1);
    color: var(--dark-1) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: bold;
}

/* ==========================================================================
   3. SEKCJA HERO I WSPÓLNE TŁO
   ========================================================================== */
.hero {
    flex: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-2);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero-glass-container, .contact-container {
    z-index: 10;
    background: rgba(48, 56, 59, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

.hero-glass-container {
    padding: 60px;
    text-align: center;
    max-width: 800px;
    width: 90%;
}

.hero h1 {
    font-size: 3rem;
    color: var(--gold-3);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-2);
    margin-bottom: 35px;
}

/* Przyciski na Index */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   4. KONTAKT - FORMULARZ I IKONY
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    width: 100%;
    max-width: 1100px;
    padding: 60px;
    text-align: left;
}

.contact-info-side h2 {
    font-size: 2.8rem;
    color: var(--gold-1);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item .icon {
    background: var(--gold-1);
    color: #000000;
    width: 45px; height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-weight: bold;
}

.info-item .details label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-1);
    text-transform: uppercase;
}

.info-item .details a, .info-item .details p {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Poprawka Formularza */
.form-group {
    position: relative;
    margin-bottom: 35px;
    width: 100%;
}

.styled-form input, .styled-form textarea {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--gray-1);
    color: #FFFFFF;
    font-size: 1rem;
    font-family: inherit;
}

.styled-form label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--gray-2);
    transition: 0.3s;
    pointer-events: none;
}

.styled-form input:focus ~ label,
.styled-form input:not(:placeholder-shown) ~ label,
.styled-form textarea:focus ~ label,
.styled-form textarea:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--gold-1);
}

/* ==========================================================================
   5. PRZYCISKI I DEKORACJE
   ========================================================================== */
.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--gold-1);
    color: var(--dark-1) !important;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid var(--gold-3);
    color: var(--gold-3);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: var(--gold-3);
    color: var(--dark-2);
}

.full-width { width: 100%; }

.deco-circle { position: absolute; border-radius: 50%; background: var(--gold-1); opacity: 0.1; z-index: 1; }
.deco-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.deco-3 { width: 200px; height: 200px; bottom: -80px; left: 2%; background: var(--gray-2); }
.deco-line {
    position: absolute; width: 250px; height: 20px; background: var(--gold-2);
    transform: rotate(-45deg); top: 15%; left: -60px; opacity: 0.2;
}

/* ==========================================================================
   6. STOPKA
   ========================================================================== */
.site-footer {
    background-color: var(--dark-1);
    color: var(--gray-1);
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; padding: 40px; }
    .cta-buttons { flex-direction: column; }
}