/* RESET I USTAWIENIA PODSTAWOWE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212; 
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* TYPOGRAFIA LUKSUSOWA */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
}

h1 {
    font-weight: 600;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

/* NOWE STYLOWANIE LOGO - EKSTRAWAGANCKI KONTRAST */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Słowo 'Record' pisane złotą kursywą i małymi literami dla unikalnego efektu designerów */
.logo span {
    color: #d4af37;
    font-style: italic;
    text-transform: none; /* Wyłącza wielkie litery tylko dla drugiego słowa */
    margin-left: 2px;
}

/* ZŁOTY DEKORATOR */
.gold-divider {
    width: 60px;
    height: 2px;
    background-color: #d4af37; 
    margin: 20px auto 40px auto;
}

/* NAWIGACJA */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(18, 18, 18, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
}

nav a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #d4af37;
}

/* BANER GŁÓWNY - TWOJE ZDJĘCIE TESLI */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(18, 18, 18, 1)), 
                url('https://scontent-bcn1-1.xx.fbcdn.net/v/t39.30808-6/487866972_10163346596138223_9046825006042752008_n.jpg?stp=dst-jpg_s565x565_tt6&_nc_cat=111&ccb=1-7&_nc_sid=aa7b47&_nc_ohc=hf9JATmoMTcQ7kNvwG3TbM6&_nc_oc=AdoRGBWEEda7RyY_RMaR0UKezWsNav3NztAmH5fZbO3xLEFe9KEyglceMjguQvyIul0&_nc_zt=23&_nc_ht=scontent-bcn1-1.xx&_nc_gid=zB5--_lLlfSmDw7jlvlI7w&_nc_ss=7d289&oh=00_Af7ww1VEvJhRMr09QO0HoOa6Nltf8s9cjV73xqncWZ1HMQ&oe=6A12ABE2') 
                no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #b3b3b3;
    letter-spacing: 1px;
}

/* PRZYCISKI */
.btn-gold {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: #d4af37;
    color: #121212;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* FILOZOFIA */
.philosophy {
    background-color: #1a1a1a;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #cccccc;
}

/* USŁUGI */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* FLOTA */
.fleet {
    background: #1a1a1a;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.fleet-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(18, 18, 18, 0.8);
    padding: 40px;
    border-top: 3px solid #d4af37;
}

.fleet-content h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

/* KONTAKT */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 20px;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    padding: 15px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.phone-gold {
    color: #d4af37;
    font-weight: bold;
}

/* STOPKA */
footer {
    background-color: #0d0d0d;
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
    color: #666666;
    border-top: 1px solid #1a1a1a;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    .logo {
        margin-bottom: 10px;
    }
    nav a {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}