/*
Theme Name: HMS Machinery Theme
Theme URI: https://twojastrona.pl
Author: Twoje Imię
Description: Motyw dla serwisu maszyn budowlanych oparty na Tailwind CSS.
Version: 1.0
Text Domain: hms-theme
*/

/* Tutaj dodasz ewentualne poprawki CSS, jeśli Tailwind czegoś nie pokryje */
body {
    overflow-x: hidden;
}

/* Dostosowanie menu WordPressa do Tailwinda */
.nav-menu { display: flex; gap: 2.5rem; }
.nav-menu li { list-style: none; position: relative; }
.nav-menu a { 
    text-transform: uppercase; 
    font-family: 'Rajdhani', sans-serif; 
    font-weight: 700;
    font-size: 1.125rem;
    transition: color 0.3s;
}
.nav-menu a:hover { color: #D2690D; }

/* Style dla formularza HMS */
.hms-input {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #4b5563 !important; /* gray-600 */
    padding: 0.75rem 0.5rem !important;
    color: white !important;
    width: 100%;
    transition: all 0.3s ease;
    outline: none !important;
}

.hms-input:focus {
    border-color: #D2690D !important; /* hms-orange */
    outline: none !important;
}

/* Ukrycie domyślnego loadera CF7, który może psuć układ */
.wpcf7-spinner {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

/* --- Style dla treści wpisów i stron (WordPress Content) --- */

.entry-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #514E4F; /* hms-dark */
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.entry-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #D2690D; /* hms-orange */
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.entry-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.entry-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content a {
    color: #D2690D;
    font-weight: 600;
    text-decoration: underline;
}

.entry-content blockquote {
    border-left: 4px solid #D2690D;
    padding-left: 1rem;
    font-style: italic;
    color: #6b7280;
    margin: 2rem 0;
}