* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    z-index: 100;
}


.nav .container {
    padding: 1rem 0.5rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    /*color: #FFD700;*/
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.logo > .material-icons {
    margin-right: .5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.btn-primary {
    background: #ffd700;
    color: #000;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-with-icon {
    display: flex;
    align-items: center;
}

.btn-with-icon  .material-icons {
    margin-right: .5rem;
}

.nav .btn-primary {
    color: #000;
}

.btn-primary:hover {
    background: #ffc107;
    color: black !important;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #000;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    /*background-image: url('./tap.jpg');*/
    background-size: cover;
    background-position: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url("./tap.jpg") center/cover;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffd700;
    line-height: 4.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 800px;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: #ffd700;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Logos Section */
.logos-section {
    padding: 3rem 0;
    background: #111;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    /*background: #333;*/
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.logo-placeholder:hover {
    /*background: #444;*/
    transform: scale(1.05);
}

.logo-placeholder img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-white {
    background: white;
    color: #000;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

.section-white h2 {
    color: #000;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.content-list {
    list-style: none;
}

.content-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.content-list .check-icon {
    margin-top: 0.2rem;
    background-color: black;
    border-radius: 999px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    position: relative;
}

.placeholder-image img {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;

}

.placeholder-image div {

    background-color: black;
    width: 100%;
    height: 100%;
    transform: translate(-25px, -25px);
}

.placeholder-image div.flipped {
    transform: translate(25px, -25px);
}

.section-white .placeholder-image {
    background: #f5f5f5;
}



/* Pricing Section */



.pricing {
    padding: 5rem 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url("./tapping.jpg") center/cover;
}

.pricing-title {
    text-align: center;
    margin-bottom: .5rem !important;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #111;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #ffd700;
    background: #1a1a1a;
}

.pricing-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-unit {
    font-size: 1rem;
    color: #ccc;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url("./asztal.jpg") center/cover;
}

.form-container {
    max-width: 750px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.4rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    color: #ffd700;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 5px;
    background: #000;
    color: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 3rem 0 2rem;
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    color: #666;
    text-align: center;
}

.footer-bottom a {
    color: #666;
}

.desktop-block {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {

    .nav .container {
        display: none;
    }

    .section {
        padding: 2rem 0;
    }

    .placeholder-image div {
        transform: translate(-10px, -10px);
    }

    .placeholder-image div.flipped {
        transform: translate(10px, -10px);
    }

    .btn, .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .desktop-block {
        display: inline;
    }

    .nav {
        position: absolute;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 8rem;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .feature-list {
        flex-direction: column;
        gap: 1rem;
        padding-left: 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}

.nav-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.25rem;
    background: linear-gradient(90deg, #1635cc 0%, #16c7a9 100%);
    color: white;
    text-align: center;
}

.nav-contact__clickable {
    text-decoration: underline;
    font-weight: bold;
    color: white !important;
}


.form-group .clickable {
    text-decoration: underline;
    color: white !important;

}

.form-meta{
    text-align: center;
    margin-top: 1rem;
    color: lightgray;
}

.block {
    display: block;
}

.label {
    text-transform: uppercase;
    background-color: #DB4437;
    color: white;
    padding: 5px;
    padding-bottom: 3px;
    display: inline-block;
    border-radius: 4px;
    font-size: .8rem;
    margin-right: 1rem;
    transform: translateY(-2px);
}

.btn-order {
    text-transform: uppercase;
    font-size: 1rem;
}
