/* Magnetar Audio Theme CSS */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header and Navigation */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(32, 178, 170, 0.3);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #20b2aa;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #20b2aa, #00ced1);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("/user/images/UDP900 Hero Image.jpg") center/cover no-repeat;
    overflow: hidden;
}

/* This pseudo-element now acts as both the dark overlay and the gradient */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* The background property now combines the gradient and the dark overlay */
    background: 
        radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.7) 70%),
        rgba(10, 10, 10, 0.7);

    z-index: 1; /* Puts this layer on top of the background image */
}

/* The hero content needs a higher z-index to be visible */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #20b2aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    margin-left: 220px;
    margin-right: 220px;
    color: #cccccc;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #aaaaaa;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #20b2aa, #00ced1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.5);
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #20b2aa, #00ced1);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about-section p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(32, 178, 170, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(32, 178, 170, 0.2);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #20b2aa;
}

.feature p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Products Section */
.products-section {
    background: #0a0a0a;
}

.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.product:nth-child(even) {
    direction: rtl;
}

.product:nth-child(even) > * {
    direction: ltr;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #20b2aa;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #00ced1;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-content p {
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.8;
}

.product-features h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #20b2aa;
    font-size: 0.8rem;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Downloads Section */
.downloads-section {
    background: #0a0a0a;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.download-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(32, 178, 170, 0.2);
    text-align: center;
}

.download-item h3 {
    color: #20b2aa;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(32, 178, 170, 0.1);
    border: 1px solid rgba(32, 178, 170, 0.3);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: rgba(32, 178, 170, 0.2);
    transform: translateX(5px);
}

.download-link .icon-download::before {
    content: '⬇';
    font-size: 1.2rem;
    color: #20b2aa;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    color: #20b2aa;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-item h4 {
    color: #00ced1;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #cccccc;
    line-height: 1.8;
}

.contact-item a {
    color: #20b2aa;
    text-decoration: none;
}

.contact-item a:hover {
    color: #00ced1;
}

/* Footer */
#footer {
    background: #0a0a0a;
    padding: 30px 0;
    border-top: 1px solid rgba(32, 178, 170, 0.2);
}

#footer p {
    text-align: center;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .product {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product:nth-child(even) {
        direction: ltr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

