/* =========================================
   STYLE.CSS - COMPLETE OMICRON MOTORS STYLE
   ========================================= */

/* 1. GLOBAL VARIABLES */
:root {
    --opel-yellow: #FFD700;
    --opel-black: #000000;
    --opel-grey: #4a4a4a;
    --text-white: #ffffff;
    --font-main: 'Manrope', sans-serif;
}

/* 2. BASE RESET & TYPOGRAPHY */
body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    background-color: #111111;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
p,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================================
   3. HERO / BANNER SECTION
   ========================================= */

.omicron-hero-wrapper {
    position: relative;
    width: 100%;
    /* REDUCED HEIGHT for a sleeker banner feel */
    min-height: 450px; 
    height: auto;
    
    /* STRIPED LINES BACKGROUND (Hard-stop gradient) */
    /* Black (40%) -> Grey (15%) -> Yellow (Rest) */
    background: linear-gradient(
        105deg, 
        var(--opel-black) 0%, 
        var(--opel-black) 40%, 
        var(--opel-grey) 40%, 
        var(--opel-grey) 55%, 
        var(--opel-yellow) 55%, 
        var(--opel-yellow) 100%
    );
    
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--text-white);
}

/* =========================================
   3.1 NAVIGATION BAR
   ========================================= */
.omicron-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 50;
}

/* Logo Section */
.omicron-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInFromLeft 1s ease-out forwards;
}

.omicron-logo img {
    width: 100px;
    height: auto;
}

.omicron-slogan {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--opel-yellow);
}

.omicron-slogan span {
    color: var(--text-white);
}

/* Right Side (Info + Menu) */
.omicron-nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

/* --- TOP INFO BAR STYLING --- */

/* Container */
.omicron-top-info {
    display: flex;
    align-items: center;
    gap: 15px; /* Spacing between phone and socials */
}

/* 1. SOCIAL ICONS (Circle Style) */
.social-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%; /* Perfect Circle */
    
    /* Default State: Black Circle, Yellow Icon */
    background-color: #000000;
    color: var(--opel-yellow);
    border: 2px solid #000000;
    
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-item i {
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Hover State: Yellow Background, Black Icon */
.social-item:hover {
    background-color: var(--opel-yellow);
    color: #000000;
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* 2. PHONE NUMBER (Pill Style) */
.phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 30px; /* Pill Shape */
    
    /* Default: Black Border, Black Text */
    border: 2px solid #000000;
    color: #000000;
    background-color: transparent;
    
    font-weight: 800;
    font-size: 13px;
    transition: all 0.3s ease;
}

/* Phone Icon Color */
.phone-item i {
    color: #000000;
    font-size: 13px;
}

/* Phone Hover: Fill with Black */
.phone-item:hover {
    background-color: #000000;
    color: var(--opel-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.phone-item:hover i {
    color: var(--opel-yellow);
}

/* --- MAIN MENU --- */
.omicron-menu {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.omicron-menu a {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 15px;
    border-radius: 4px;

    /* Black Text by default (on Yellow background) */
    color: #000000;
}

/* Hover: White text on Black Background */
.omicron-menu a:hover {
    color: #ffffff;
    background-color: #000000;
}

/* --- BURGER BUTTON (Hidden on Desktop) --- */
.omicron-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 20;
    padding: 0;
}

.omicron-burger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.omicron-burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.omicron-burger.active span:nth-child(2) {
    opacity: 0;
}

.omicron-burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Close Button (Mobile Only) */
.omicron-close-menu {
    display: none;
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 40px;
    cursor: pointer;
}

/* --- HERO CONTENT --- */
.omicron-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 5% 60px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* Text Section */
.omicron-text {
    flex: 1;
    z-index: 5;
    max-width: 650px;
    opacity: 0;
    animation: omicronFadeUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.omicron-text h1 {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 30px;
}

.omicron-text span {
    color: var(--opel-yellow);
}

/* CTA Button */
.omicron-btn {
    display: inline-block;
    background-color: var(--opel-yellow);
    color: var(--opel-black);
    font-weight: 800;
    font-size: 16px;
    padding: 14px 34px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.omicron-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
}

/* Image Section */
.omicron-image {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.omicron-car {
    width: 110%;
    max-width: 850px;
    height: auto;
    display: block;
    transform: translateX(200px);
    opacity: 0;
    animation: omicronDriveIn 1.3s ease-out forwards;
    animation-delay: 0.6s;
}

/* =========================================
   ANIMATIONS
   ========================================= */

/* Car drive in */
@keyframes omicronDriveIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Fade Up Animation */
@keyframes omicronFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide From Left (Logo) */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   4. MOBILE RESPONSIVENESS (< 1024px)
   ========================================= */
@media (max-width: 1024px) {

    /* Adjust Gradient Angle */
    .omicron-hero-wrapper {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.95),
                rgba(0, 0, 0, 0.85),
                rgba(255, 215, 0, 0.25));
    }

    /* Stack layout on mobile */
    .omicron-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .omicron-text h1 {
        font-size: 38px;
    }

    .omicron-image {
        justify-content: center;
        margin-top: 40px;
    }

    .omicron-car {
        width: 100%;
        max-width: 420px;
    }

    /* Hide desktop menu */
    .omicron-menu {
        display: flex;
    }

    /* --- MOBILE MENU LOGIC --- */

    /* Show Hamburger */
    .omicron-burger {
        display: flex;
    }

    /* Transform Menu into Overlay */
    .omicron-nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        /* Dark overlay */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        gap: 40px;
    }

    /* Slide in when active */
    .omicron-nav-right.active {
        right: 0;
    }

    /* Show Close Button */
    .omicron-close-menu {
        display: block;
    }

    /* Mobile Colors & Sizes */
    .omicron-menu a {
        font-size: 22px;
        color: var(--text-white);
        /* White on dark mobile menu */
    }

    .omicron-menu a:hover {
        color: var(--opel-yellow);
        background: none;
    }

    .info-item {
        font-size: 18px;
        color: #cccccc;
    }

    .info-item i {
        color: var(--opel-yellow);
    }

    /* Mobile menu (stack items) */
    .omicron-menu {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .omicron-top-info {
        flex-direction: column;
        gap: 18px;
    }

    /* Make overlay scrollable on small screens */
    .omicron-nav-right {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 90px 25px 40px;
        box-sizing: border-box;
    }

    /* Keep burger above overlay if needed */
    .omicron-burger {
        position: relative;
        z-index: 1101;
    }

    .omicron-nav-right {
        z-index: 1100;
    }

}


/* =========================================
   SECTIONS STYLING (Services, Why Us, Info)
   ========================================= */

.omicron-sections-wrapper {
    background-color: #111; /* Dark background base */
    color: var(--text-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common Section Styles */
section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: var(--opel-yellow);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin: 0;
}

/* --- 1. CTA STRIP --- */
.omicron-cta-strip {
    background: linear-gradient(90deg, #1a1a1a 0%, #000 100%);
    padding: 50px 0;
    border-top: 4px solid var(--opel-yellow);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.cta-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-btn.solid {
    background-color: var(--opel-yellow);
    color: var(--opel-black);
}

.cta-btn.solid:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.cta-btn.outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.cta-btn.outline:hover {
    border-color: var(--opel-yellow);
    color: var(--opel-yellow);
}

/* --- 2. SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--opel-yellow);
    background: #222;
}

.icon-box {
    font-size: 40px;
    color: var(--opel-yellow);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.service-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- 3. WHY OMICRON --- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    filter: grayscale(100%); /* Optional: Stylish B&W look */
    transition: filter 0.3s;
}

.why-image img:hover {
    filter: grayscale(0%);
}

.why-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.why-list li i {
    color: var(--opel-yellow);
    font-size: 20px;
    margin-top: 5px;
}

.why-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.why-list p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* --- 4. INFO & HOURS --- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-box {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-box h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 25px;
    border-left: 4px solid var(--opel-yellow);
    padding-left: 15px;
}

.address {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.map-container iframe {
    border-radius: 10px;
    filter: invert(90%) hue-rotate(180deg); /* Dark Mode Map */
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-weight: 600;
}

.hours-list .time {
    color: var(--opel-yellow);
}

.hours-list .closed {
    color: #ff4444;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .why-grid, .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cta-btn {
        justify-content: center;
    }
}

/* =========================================
   5. UNDER CONSTRUCTION PAGE
   ========================================= */

.under-construction-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

/* Background Gradients/Shapes */
.bg-shape {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--opel-yellow);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #333;
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
}

.construction-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    width: 100%;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: omicronFadeUp 1s ease-out forwards;
}

.logo-area {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.construction-logo {
    width: 80px;
    height: auto;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

.brand-name span {
    color: var(--opel-yellow);
}

/* Main Message */
.main-message h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.main-message p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Actions */
.construction-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Socials */
.social-links-area p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 700;
}

.construction-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: var(--opel-yellow);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .construction-content {
        padding: 40px 20px;
    }

    .main-message h1 {
        font-size: 26px;
    }

    .construction-actions {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        box-sizing: border-box;
    }
}
