@charset "UTF-8";

:root {
  --primary-color: #1a2b4c;      /* Głęboki granat prawniczy */
  --accent-color: #c5a059;       /* Elegancki złoty/miedziany akcent */
  --text-color: #333333;
  --bg-light: #f4f6f9;
  --white: #ffffff;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-color);
  line-height: 1.7;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(26, 43, 76, 0.85), rgba(26, 43, 76, 0.85)), url('https://picsum.photos/1920/1080') no-repeat center center/cover;
  color: var(--white);
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 35px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.btn:hover {
  background: #b08d47;
}

/* Common Sections */
.content-section {
  padding: 110px 0 90px 0;
}

.content-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.section-desc {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  color: #555;
}

.bg-light {
  background: var(--bg-light);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border-top: 3px solid var(--accent-color);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Contact */
.contact-grid {
  text-align: center;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 12px 0;
}

.lawyer-highlight {
  font-size: 1.25rem !important;
  color: var(--primary-color);
  margin-bottom: 20px !important;
}

.nip-info {
  font-size: 0.9rem !important;
  color: #777;
  margin-top: 15px !important;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}
@charset "UTF-8";

:root {
    --primary-color: #1a2b4c; /* Głęboki granat prawniczy */
    --accent-color: #c5a059; /* Elegancki złoty/miedziany akcent */
    --text-color: #333333;
    --bg-light: #f4f6f9;
    --white: #ffffff;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
}

    .nav-links a {
        margin-left: 30px;
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--accent-color);
        }

/* Elementy Hamburgera - domyślnie ukryte na desktopie */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(26, 43, 76, 0.85), rgba(26, 43, 76, 0.85)), url('https://picsum.photos/1920/1080') no-repeat center center/cover;
    color: var(--white);
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

    .btn:hover {
        background: #b08d47;
    }

/* Common Sections */
.content-section {
    padding: 110px 0 90px 0;
}

    .content-section h2 {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: var(--primary-color);
        font-weight: 600;
    }

.section-desc {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #555;
}

.bg-light {
    background: var(--bg-light);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border-top: 3px solid var(--accent-color);
    transition: transform 0.2s;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-card h3 {
        margin-bottom: 15px;
        color: var(--primary-color);
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 0.95rem;
        color: #666;
    }

/* Contact */
.contact-grid {
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 12px 0;
}

.lawyer-highlight {
    font-size: 1.25rem !important;
    color: var(--primary-color);
    margin-bottom: 20px !important;
}

.nip-info {
    font-size: 0.9rem !important;
    color: #777;
    margin-top: 15px !important;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

    .contact-info a:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* =========================================
   MEDIA QUERIES - WERSJA MOBILNA
   ========================================= */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px; /* Wysokość headera */
        left: -100%; /* Domyślnie schowane poza ekranem */
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        transition: left 0.3s ease-in-out;
    }

        .nav-links a {
            margin: 15px 0;
            font-size: 1.1rem;
        }

    /* Akcja po kliknięciu (checkbox zaznaczony) */
    .menu-toggle:checked ~ .nav-links {
        left: 0;
    }

    /* Animacja hamburgera w znak "X" po kliknięciu */
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Responsywność tekstu w Hero Section */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
}