* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

.logo1 {
    width: 60px;
}

.logo2 {
    width: 100px;
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c19a6b;
    text-shadow: 0 0 8px #c19a6b;
}

.phone {
    border: 1px solid #c19a6b;
    padding: 8px 14px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.phone:hover {
    background: #c19a6b;
    color: black;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1100;
}

.hero {
    height: 70vh;
    width: 100%;
    background: url("tłog.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 80px;
    animation: fadeIn 1.2s ease;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-tag {
    display: inline-block;
    background: rgba(193, 154, 107, 0.8);
    color: black;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
}

.primary {
    background: #c19a6b;
    color: black;
}

.primary:hover {
    box-shadow: 0 0 15px #c19a6b;
    transform: translateY(-2px);
}

.secondary {
    border: 1px solid white;
    color: white;
}

.secondary:hover {
    background: white;
    color: black;
}

.models-section,
.about-section,
.gallery-section,
.contact-section {
    padding: 100px 0;
}

.models-header {
    text-align: center;
}

.models-header p {
    margin-top: 10px;
    color: #666;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.model-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.model-card img {
    width: 100%;
    height: 260px !important;
    object-fit: cover;
}

.model-info {
    padding: 15px;
}

.model-card:hover {
    transform: translateY(-10px);
}

.features-bar {
    margin-top: 20px;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #111;
    color: white;
    padding: 25px 40px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
    box-sizing: border-box;
    z-index: 10;
}

.features-bar>div {
    color: #c19a6b;
    padding: 0 15px;
    position: relative;
    max-width: 25%;
    text-align: center;
}

.features-bar>div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 10%;
    height: 100%;
    width: 2px;
    background-color: #c19a6b;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-left {
    text-align: left;
}

.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-right img {
    width: 100%;
    height: 220px !important;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-section {
    background: #111;
    color: white;
}

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.gallery-section .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 1%;
}

.warto {
    color: #c19a6b;
}

.gallery-row img {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-row img:hover {
    transform: scale(1.05);
}

.contact-section {
    padding: 80px 5%;
    background: #f8f8f8;
}

.contact-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-grid>div:first-child {
    width: 50%;
}

.contact-grid h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-grid p {
    margin-bottom: 10px;
    color: #444;
}

.contact-form {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.contact-form form {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c49a6c;
}

.contact-form textarea {
    min-height: 50px;
    resize: none;
    overflow: auto;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #c49a6c;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.contact-form button:hover {
    opacity: 0.9;
}

.socials {
    display: flex;
    gap: 10px;
}

.social-box {
    width: 40px;
    height: 40px;
    border: 1px solid #c19a6b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.social-box:hover {
    transform: translateY(-5px) scale(1.08);

    border-color: white;

    box-shadow:
        0 0 10px #c19a6b,
        0 0 20px rgba(193, 154, 107, 0.6);
}

.social-box img {
    margin-top: 12px;
    width: 30px;
    transition: 0.3s ease;
}

.social-box:hover img {
    transform: scale(1.15);
}

.copy {
    margin-top: 5px;
    text-align: center;
}

.container {
    max-width: 1100px !important;
    padding: 0 15px !important;
}

.models-section,
.about-section,
.gallery-section,
.contact-section {
    padding: 30px 0 !important;
}

.hero h1 {
    font-size: 48px !important;
}

.hero p {
    font-size: 18px;
}

.hero-features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 25px 40px;
    font-weight: bold;
    font-size: 16px;
    color: #c19a6b;
    z-index: 3;
    border-top: 2px solid #c19a6b;
    border-bottom: 2px solid #c19a6b;
    box-sizing: border-box;
}

.tspan {
    color: white;
}

.hero-features-bar>div {
    position: relative;
    text-align: center;
    padding: 0 10px;
}

.hero-features-bar>div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 2px;
    background-color: #c19a6b;
}

.footer {
    background: #111;
    color: #aaa;
    padding: 60px 40px;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    overflow: visible;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer-col a:hover {
    color: #c19a6b;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1100;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.4);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        display: none;
        padding: 20px 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .phone {
        display: none;
    }

    .hero {
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 20px 160px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-buttons {
        margin: 30px auto 0 auto;
        max-width: 320px;
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .hero-features-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .hero-features-bar>div {
        padding: 20px 10px;
        text-align: center;
        font-size: 13px;
        border: 0.5px solid rgba(255, 255, 255, 0.05);
        box-sizing: border-box;
    }

    .hero-features-bar>div::after {
        display: none;
    }

    .hero-features-bar+div {
        margin-top: 0 !important;
        background: transparent !important;
        border-top: none !important;
        box-shadow: none !important;
        height: auto !important;
        padding: 0 !important;
    }

    .models-grid,
    .gallery-row,
    .about-section .container,
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .features-bar {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .features-bar>div {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
    }

    .contact-grid>*:first-child {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-grid>*:nth-child(2) {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 40px auto;
        text-align: center;
    }


    .contact-form {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-form form {
        max-width: 520px;
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 50px 20px;
    }
}

@media (max-width: 500px) {

    .hero h1 {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .hero-content {
        padding-bottom: 240px;
    }

    .hero-features-bar {
        grid-template-columns: 1fr;
        font-size: 12px;
        max-width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .hero-features-bar>div {
        padding: 15px;
        border-right: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}