@charset "utf-8";
/* CSS Document */
:root {
 --primary: red;
 --primary-light: #4a8ed0;
 --primary-dark: #ffffff;
 --secondary: red;
 --light: #ffffff;
 --dark: #212529;
 --gray: #6c757d;
 --light-gray: #f6f6f6;
 --shadow: 0 4px 12px rgba(0,0,0,0.1);
 --transition: all 0.3s ease;
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}
h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
    color: var(--primary);
}
h3 {
    font-size: 1.5rem;
}
p {
    margin-bottom: 1rem;
}
a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}
a:hover {
    color: var(--primary-dark);
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: #821317;
}
.btn-secondary {
    background-color: var(--secondary);
}
.btn-secondary:hover {
    background-color: #2ab895;
}
.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}
.btn-outline:hover {
    background-color: red;
    color: white;
	border: 2px solid red;
}
section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header p {x;
    margin: 0 auto;
}
/* Header & Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}
.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin-left: 30px;
}
.nav-links a {
    font-weight: 500;
    color: var(--dark);
}
.nav-links a:hover {
    color: var(--primary);
}
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/* Hero Section */
.hero {
	background-image: url("../images/hero-banner.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 650px;
    background-size: 100% 100%;
    /*background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;*/
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.hero .btn {
    margin: 0 10px;
}
/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
/* How It Works Section */
.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}
/* Content Library Section */
.content-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab {
    padding: 12px 25px;
    background: white;
    border: none;
    border-radius: 50px;
    margin: 0 10px 10px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.tab.active {
    background-color: var(--primary);
    color: white;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.content-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.content-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-info {
    padding: 50px 20px 20px 20px;
}
/* Beta Program Section */
.beta {
    background: linear-gradient(135deg, red 0%, #000000 100%);
    color: white;
    text-align: center;
}
.beta h2, .beta h3 {
    color: white;
}
.beta p {
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}
.customization-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}
/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.about-text {
    flex: 1;
    min-width: 300px;
}
.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #EFEFEF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 5rem;
}
/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1;
    min-width: 300px;
}
.contact-details {
    margin-top: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    /*margin-bottom: 10px;*/
}
.contact-icon {
    /*width: 50px;
    height: 50px;
    background-color: var(--primary);*/
    color: red;
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 2.2rem;
}
.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}
.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #adb5bd;
    transition: var(--transition);
}
.footer-links a:hover {
    color: white;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}
.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
h1 {
    font-size: 2.2rem;
}
h2 {
    font-size: 1.8rem;
}
.hero h1 {
    font-size: 2.5rem;
}
}

@media (max-width: 768px) {
.nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
}
.nav-links.active {
    display: flex;
}
.nav-links li {
    margin: 10px 0;
}
.mobile-menu {
    display: block;
}
.hero-buttons {
    flex-direction: column;
    align-items: center;
}
.hero .btn {
    margin: 5px 0;
    width: 80%;
    max-width: 300px;
}
.steps {
    flex-direction: column;
}
.step {
    margin-bottom: 40px;
}
}

@media (max-width: 576px) {
section {
    padding: 60px 0;
}
.hero {
    padding: 130px 0 80px;
}
.hero h1 {
    font-size: 2rem;
}
.feature-card, .content-card {
    padding: 20px;
}
}
