@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #CEAA5B;
    --secondary-color: #333333;
    --accent-color: #007BFF;
    --text-color: #333;
    --light-bg: #F8F5F0;
    --dark-bg: #131313;
    --warning-color: #CEAA5B; /* Changed from red to match theme */
    --success-color: #4CAF50;
    --df-width: min(1200px, 90vw);
    --border-radius: 10px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 16px;
    background: var(--light-bg);
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prototype Notice */
.prototype-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color); /* Changed to match theme */
    color: white;
    text-align: center;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.notice-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.blink {
    animation: blink 1s infinite;
    font-size: 1.2rem;
    color: var(--primary-color); /* Changed to primary color */
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Header */
header {
    padding: 15px 5%;
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    font-family: "Share Tech", serif;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    max-width: var(--df-width);
}

header .logo img {
    width: 4em;
    border-radius: 50%;
    margin: 2%;
    transition: transform 0.3s ease;
}

header .logo img:hover {
    transform: scale(1.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: "Share Tech", serif;
}

header .logo-text {
    display: grid;
    padding-left: 2%;
}

nav {
    background: var(--secondary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

nav:hover {
    background-color: var(--dark-bg);
    transform: translateY(-2px);
}

nav a {
    text-decoration: none;
    padding: 0 20px;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: white;
}

/* Banner */
.banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    margin-top: 20px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#banner-image {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.banner-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    font-family: "Share Tech", serif;
}

.banner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.glow-text {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--primary-color), 0 0 20px var(--primary-color);
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--primary-color), 0 0 40px var(--primary-color);
    }
}

.banner-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

/* Section Styling */
.section {
    padding: 80px 0;
    width: 100%;
}

.content {
    max-width: var(--df-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Content with Slider */
.content-with-slider {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.text-content {
    flex: 1;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Image Slider */
.image-slider {
    flex: 1;
    position: relative;
    max-width: 500px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.slider-container {
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.active, .dot:hover {
    background-color: white;
}

/* Features Grid */
.feature-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--primary-color); /* Added theme color border on hover */
}

.feature-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.feature-text {
    font-weight: 500;
}

/* Tech Demo */
.tech-demo {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 50px;
}

.tech-demo-content {
    flex: 1;
}

.tech-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.tech-demo-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Radar Animation */
.radar-animation {
    width: 250px;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.radar-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: linear-gradient(to right, rgba(206, 170, 91, 0), rgba(206, 170, 91, 0.8)); /* Changed to primary color */
    transform-origin: bottom right;
    animation: sweep 4s infinite linear;
}

@keyframes sweep {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.radar-target {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color); /* Changed to match theme */
    border-radius: 50%;
    animation: blink 2s infinite;
}

.target1 {
    top: 30%;
    left: 40%;
    animation-delay: 0.5s;
}

.target2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.target3 {
    top: 20%;
    left: 65%;
    animation-delay: 1.5s;
}

/* Quote Section */
#quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 50%, white 50%, white 100%);
}

.quote-container {
    max-width: var(--df-width);
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.quote-info {
    flex: 1;
    color: var(--dark-bg);
    padding: 40px 20px;
}

.quote-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.quote-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Animated Camera */
.animated-camera {
    position: relative;
    width: 150px;
    height: 100px;
    margin-top: 40px;
}

.camera-body {
    width: 100px;
    height: 60px;
    background-color: var(--dark-bg);
    border-radius: 10px;
    position: absolute;
    bottom: 0;
}

.camera-lens {
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 30px;
    border: 5px solid #222;
}

.camera-light {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color); /* Changed to primary color */
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 15px;
    animation: blink 1.5s infinite;
}

/* Form Styling */
form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(206, 170, 91, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--primary-color); /* Changed to primary color */
    color: var(--dark-bg); /* Changed for better contrast */
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    background-color: #b89343; /* Darker shade of primary color */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(206, 170, 91, 0.3);
}

.btn-text {
    margin-right: 10px;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    max-width: var(--df-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-text h3 {
    font-family: "Share Tech", serif;
    margin-bottom: 5px;
}

.footer-info {
    margin-top: 20px;
}

.prototype-text {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--primary-color); /* Changed to primary color */
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-with-slider, .tech-demo, .quote-container {
        flex-direction: column;
    }
    
    .image-slider, .tech-demo-animation {
        margin: 0 auto;
    }
    
    .quote-info {
        text-align: center;
    }
    
    .animated-camera {
        margin: 40px auto;
    }
    
    .banner-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    
    nav {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
    
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .banner-content h3 {
        font-size: 1.2rem;
    }
    
    .banner-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-text {
        padding-left: 0;
        text-align: center;
    }
    
    nav a {
        padding: 0 10px;
        font-size: 0.9rem;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    form {
        padding: 20px;
    }
}