/* ===================================
   Inka Design Studio - Under Construction
   Drone Services Website Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-orange: #ff6b35;
    --accent-green: #00ff88;
    --text-white: #ffffff;
    --text-gray: #cccccc;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--primary-black);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================================
   Background Effects
   =================================== */

/* Animated background grid */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Glowing orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-orange);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-green);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

/* ===================================
   Main Container
   =================================== */

.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* ===================================
   Brand/Logo
   =================================== */

.brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
    }
}

/* ===================================
   Drone Image Section
   =================================== */

.drone-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 50px rgba(255, 107, 53, 0.3),
        0 0 100px rgba(0, 255, 136, 0.2);
    animation: droneFloat 6s ease-in-out infinite;
}

@keyframes droneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.drone-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 53, 0.2) 0%,
        rgba(0, 255, 136, 0.2) 100%
    );
    z-index: 1;
}

.drone-container img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

/* ===================================
   Content Section
   =================================== */

.content {
    text-align: center;
    max-width: 700px;
}

.status {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--accent-green);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    }
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-white), var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-orange);
    -webkit-text-fill-color: var(--accent-orange);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ===================================
   Features Section
   =================================== */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

.feature {
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===================================
   Email Notification Section
   =================================== */

.notify-section {
    margin: 3rem auto 0 auto;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notify-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    text-align: center;
}

.notify-form {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.notify-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.notify-form button {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--accent-orange), #ff8555);
    border: none;
    border-radius: 50px;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* ===================================
   Footer Section
   =================================== */

footer {
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-green);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .brand {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }
}
