:root {
    --primary: #5dade2; 
    --dark: #070d14;    
    --card-bg: #0f1a2a; 
    --text-light: #f4f7f9;
    --text-dim: #a0aec0;
    --white: #ffffff;
    --accent-gradient: linear-gradient(135deg, #5dade2 0%, #2e86de 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; background-color: var(--dark); color: var(--text-light); overflow-x: hidden; line-height: 1.6; width: 100%; }
h1, h2, h3, .logo-text-main { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }

/* Navigáció */
nav { 
    background: rgba(7, 13, 20, 0.85); 
    backdrop-filter: blur(10px);
    padding: 12px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid rgba(93, 173, 226, 0.3); 
}
.nav-container { max-width: 1400px; margin: auto; display: flex; justify-content: space-between; align-items: center; padding: 0 40px; }

.logo-area { display: flex; align-items: center; text-decoration: none; }
.logo-area img { 
    height: 100px; 
    border-radius: 12px; 
    margin-right: 25px; 
    border: 2px solid var(--primary); 
    background: #fff; 
    padding: 4px; 
    box-shadow: 0 0 20px rgba(93, 173, 226, 0.4);
}

.logo-text-box { display: flex; flex-direction: column; }
.logo-text-main { font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.logo-text-sub { font-size: 1.1rem; color: var(--primary); letter-spacing: 6px; font-weight: 500; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 35px; }
nav a { color: var(--text-light); text-decoration: none; font-weight: 500; transition: 0.3s; }
nav a:hover { color: var(--primary); }

/* Hamburger (CSS-only) */
#nav-toggle { display: none; }
.nav-toggle { display: none; cursor: pointer; width: 44px; height: 44px; border-radius: 8px; align-items: center; justify-content: center; flex-direction: column; }
.nav-toggle .bar { display: block; width: 26px; height: 3px; background: var(--white); margin: 6px 0; border-radius: 2px; transition: 0.25s; }

.divider { 
    width: 100%; 
    height: 1px; 
    background: linear-gradient(90deg, transparent, rgba(93, 173, 226, 0.5), transparent); 
    margin: 20px 0; 
}

/* Hero */
.hero { 
    height: 100vh; 
    background: linear-gradient(rgba(7, 13, 20, 0.4), rgba(7, 13, 20, 0.8)), 
                url('../assets/images/FB COVER_adams_garage_1.jpg');
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    border-bottom: 3px solid var(--primary);
}
.hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero-content p { font-size: clamp(1rem, 2vw, 1.4rem); margin-bottom: 40px; color: var(--white); font-weight: 300; }

.btn { 
    background: var(--accent-gradient); 
    color: white; 
    padding: 20px 60px; 
    text-decoration: none; 
    font-weight: 600; 
    border-radius: 50px; 
    transition: 0.4s; 
    display: inline-block; 
    text-transform: uppercase; 
}

section { padding: 120px 25px; max-width: 1300px; margin: auto; }
.section-title { text-align: center; font-size: 3.5rem; margin-bottom: 70px; font-weight: 700; }
.section-title span { color: var(--white); }

.about-content { max-width: 900px; margin: auto; text-align: center; }
.about-content h3 { font-size: 2.2rem; color: var(--primary); margin-bottom: 30px; }
.about-content p { font-size: 1.3rem; color: var(--text-dim); margin-bottom: 20px; }

/* Galéria */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { height: 350px; border-radius: 15px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: var(--card-bg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Szolgáltatások */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { 
    background: var(--card-bg); 
    padding: 40px 30px; 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.05); 
    transition: all 0.3s ease; 
}
.service-card:hover { 
    border-color: var(--primary); 
    box-shadow: 0 0 20px rgba(93, 173, 226, 0.3);
    transform: translateY(-5px);
}
.service-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--white); }

/* Kapcsolat */
.contact-box { background: var(--card-bg); display: grid; grid-template-columns: 1fr 1fr; border-radius: 30px; overflow: hidden; }
.contact-info, .contact-form { padding: 60px; }
input, textarea { width: 100%; padding: 18px; margin-bottom: 20px; background: rgba(255,255,255,0.0); border: 1px solid rgba(255,255,255,0.2); color: white; border-radius: 12px; }

/* Kapcsolat: egységes betűstílus az input/textarea és a kapcsolati szövegek számára */
.contact-info p,
.contact-form input,
.contact-form textarea,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
}

footer { text-align: center; padding: 60px; background: #04080e; color: var(--text-dim); }

@media (max-width: 768px) {
    .nav-container { padding: 0 15px; }
    .logo-area img { height: 70px; margin-right: 12px; }
    .logo-text-main { font-size: 1.5rem; }
    .logo-text-sub { font-size: 0.75rem; letter-spacing: 3px; }
    .nav-toggle { display: flex; }
    nav ul { display: none; position: absolute; top: 78px; right: 15px; left: 15px; background: rgba(7,13,20,0.95); border-radius: 12px; padding: 18px; flex-direction: column; width: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.6); opacity: 0; transform: translateY(-10px); transition: opacity 0.3s ease, transform 0.3s ease; }
    nav ul li { margin: 0; }
    nav ul li a { display: block; padding: 12px 15px; border-radius: 6px; }
    #nav-toggle:checked ~ ul { display: flex; opacity: 1; transform: translateY(0); }
    nav ul.closing { opacity: 0; transform: translateY(-10px); }
    #nav-toggle:checked + label .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #nav-toggle:checked + label .bar:nth-child(2) { opacity: 0; }
    #nav-toggle:checked + label .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .contact-box { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 40px 25px; }
    .contact-info { padding-bottom: 20px; }
    .contact-form { padding-top: 20px; }
}
