/*
Theme Name: KOBRA Landing
Theme URI: https://kobraxyz.at
Description: Professional Landing Page for KOBRA - Google Ads Takeover
Author: KOBRA
Version: 1.0
Text Domain: kobra-landing
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
    --kobra-black: #000000;
    --kobra-red: #e53935;
    --kobra-white: #ffffff;
    --kobra-gray: #1a1a1a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--kobra-white);
    background: var(--kobra-black);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--kobra-white);
    text-decoration: none;
}

.logo span { color: var(--kobra-red); }

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: var(--kobra-white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover { color: var(--kobra-red); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h1 span { color: var(--kobra-red); }

.hero-text .subtitle {
    font-size: 20px;
    color: #888;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--kobra-red);
    color: var(--kobra-white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: #c62828;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229,57,53,0.4);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    border-radius: 5px;
    object-fit: cover;
    object-position: center top;
    transition: filter 0.5s;
}

.hero-image:hover img {
    filter: grayscale(50%);
}

/* Red Bar */
.red-bar {
    background: var(--kobra-red);
    padding: 60px 0;
    text-align: center;
}

.red-bar h2 {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.red-bar p { font-size: 18px; opacity: 0.9; }

/* Services */
.services {
    padding: 100px 0;
    background: var(--kobra-black);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title p { color: #888; font-size: 17px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--kobra-gray);
    padding: 40px;
    border-left: 4px solid var(--kobra-red);
    transition: all 0.3s;
}

.service-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229,57,53,0.2);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p { color: #aaa; line-height: 1.8; }

/* Benefits */
.benefits {
    padding: 100px 0;
    background: var(--kobra-gray);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.benefit-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--kobra-red);
    font-weight: bold;
    font-size: 20px;
}

.benefit-list h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-list p { color: #aaa; font-size: 15px; }

.benefits-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    border-radius: 5px;
    transition: filter 0.5s;
}

.benefits-image:hover img {
    filter: grayscale(50%);
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--kobra-red) 0%, #b71c1c 100%);
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta p { font-size: 18px; margin-bottom: 40px; opacity: 0.9; }

.cta .btn {
    background: var(--kobra-white);
    color: var(--kobra-black);
}

.cta .btn:hover {
    background: var(--kobra-black);
    color: var(--kobra-white);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--kobra-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 { font-size: 28px; margin-bottom: 30px; }
.contact-info p { color: #aaa; margin-bottom: 30px; line-height: 1.8; }

.contact-details { list-style: none; }
.contact-details li { margin-bottom: 15px; color: #ccc; }
.contact-details strong { color: var(--kobra-red); }
.contact-details a { 
    color: #ccc; 
    text-decoration: none;
    transition: color 0.3s;
}
.contact-details a:hover { color: var(--kobra-red); }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    background: var(--kobra-gray);
    border: 1px solid #333;
    color: var(--kobra-white);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--kobra-red);
}

.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form button { width: 100%; }

/* Footer */
.site-footer {
    background: var(--kobra-gray);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.site-footer p { color: #666; font-size: 14px; }
.site-footer a { color: #888; text-decoration: none; transition: color 0.3s; }
.site-footer a:hover { color: var(--kobra-red); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text, .service-card, .benefit-list li {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive - Tablet */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 { font-size: 36px; }
    
    .hero-image {
        display: block !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .benefits-content { 
        grid-template-columns: 1fr; 
    }
    
    .benefits-image {
        display: block !important;
        max-width: 400px;
        margin: 30px auto 0;
    }
    
    .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-text h1 { font-size: 28px; }
    .hero-text .subtitle { font-size: 16px; }
    .hero-text p { font-size: 14px; }
    
    .hero-image {
        max-width: 300px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    
    .section-title h2, .red-bar h2, .cta h2 { font-size: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    
    .service-card { padding: 30px 25px; }
    
    .benefits { padding: 60px 0; }
    .services { padding: 60px 0; }
    .cta { padding: 60px 0; }
    .contact { padding: 60px 0; }
    
    .benefits-image {
        max-width: 280px;
    }
    
    .red-bar { padding: 40px 0; }
    .red-bar p { font-size: 16px; }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    
    .hero-text h1 { font-size: 24px; }
    
    .logo { font-size: 24px; }
    
    .hero-image, .benefits-image {
        max-width: 250px;
    }
    
    .section-title h2, .red-bar h2, .cta h2 { font-size: 20px; }
}

/* ============================================
   ADDITIONAL STYLES - IMPROVEMENTS
   ============================================ */

/* Larger CTA Button */
.btn-large {
    padding: 20px 50px !important;
    font-size: 18px !important;
    letter-spacing: 2px;
}

/* Contact form styling improvements */
.contact-form form {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s, background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #C41E3A;
    background: rgba(255,255,255,0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Contact details styling */
.contact-details {
    list-style: none;
    margin-top: 30px;
}

.contact-details li {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-details a {
    color: #C41E3A;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #fff;
}

/* Service card emoji styling */
.service-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Benefits list emoji */
.benefit-list h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(196, 30, 58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0); }
}

.cta .btn {
    animation: pulse 2s infinite;
}

/* Footer improvements */
.site-footer {
    background: #0a0a0a;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer p {
    text-align: center;
    color: #888;
    font-size: 14px;
}

.site-footer a {
    color: #C41E3A;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #fff;
}

/* Hero image grayscale with color on hover */
.hero-image img {
    transition: filter 0.5s ease;
}

.hero-image:hover img {
    filter: grayscale(0%);
}

/* Mobile responsive for new elements */
@media (max-width: 768px) {
    .btn-large {
        padding: 15px 30px !important;
        font-size: 14px !important;
    }
    
    .contact-form form {
        padding: 20px;
    }
}

/* Mobile Menu Fix */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 60px 20px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        display: block;
    }
    
    .nav-menu li a {
        font-size: 1.2rem;
        color: #fff;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
}

/* Hide red call button */
.floating-btn.call {
    display: none !important;
}

/* Green cookie accept button */
.cookie-btn.accept {
    background: #25D366 !important;
}

.cookie-btn.accept:hover {
    background: #1da851 !important;
}
