/* Global Styles */
:root {
    --primary-color: #FF6B00; /* Orange */
    --secondary-color: #111111; /* Black */
    --light-color: #ffffff;
    --text-color: #333333;
    --gray-color: #f4f4f4;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    position: absolute;
    width: 100%;
    top: 30px;
    z-index: 1002;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 220px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.logo img {
    width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../assets/images/hero-bg.jpg');
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-color);
    text-align: center;
    padding-top: 150px;
    padding-bottom: 120px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 0;
}

.hero .container {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.hero h1, .hero h2 {
    color: var(--light-color);
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 0;
    line-height: 1.2;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.cta-button a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

/* About Section */
.about {
    background-color: var(--gray-color);
    text-align: center;
}

.about h2 {
    margin-bottom: 30px;
}

.about p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.about .feature {
    flex: 1 1 320px;
    max-width: 340px;
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 35px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about .feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s ease;
}

.about .feature:hover::before {
    height: 100%;
}

.about .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 240px;
    height: 135px; /* 16:9 HD ratio */
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #fff9f5;
    padding: 0;
    transition: var(--transition);
    border: 1px solid #ffe8d9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature:hover .feature-icon {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon img {
    transform: scale(1.05);
}

.about .feature h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 5px;
    padding: 0 10px;
}

.about .feature p {
    padding: 0 10px;
    text-align: center;
}

/* Features Section */
.features {
    text-align: center;
    background-color: var(--light-color);
}

.features h2 {
    margin-bottom: 20px;
}

.features > p {
    max-width: 800px;
    margin: 0 auto 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-right: 40px;
}

/* Photo Slider */
.photo-slider {
    background-color: var(--gray-color);
    text-align: center;
}

.photo-slider h2 {
    margin-bottom: 50px;
}

.swiper {
    width: 100%;
    height: 600px;
    margin-bottom: 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next, 
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Future Section */
.future {
    text-align: center;
    background-color: var(--light-color);
}

.future h2 {
    margin-bottom: 30px;
}

.future p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background-color: var(--gray-color);
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact > p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 107, 0, 0.2);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon i {
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-info p {
    margin-bottom: 10px;
}

.coming-soon {
    text-align: right;
}

.animate-text {
    animation: pulse 2s infinite;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .swiper {
        height: 350px;
    }
    
    header {
        top: 30px;
    }
    
    .logo {
        max-width: 180px;
        padding: 12px;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 100px;
    }
    
    .hero .container {
        margin-top: 90px;
    }
    
    .coming-soon-section {
        padding: 20px 0 40px;
    }
    
    .coming-soon-banner {
        display: none; /* Remove old element */
    }
    
    .typewriter-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero .container {
        margin-top: 70px;
    }
    
    .about-features {
        gap: 30px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 220px;
        height: 124px; /* Maintaining 16:9 ratio */
    }
    
    .swiper {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .coming-soon {
        text-align: center;
    }
    
    header {
        top: 20px;
    }
    
    .logo {
        max-width: 160px;
        padding: 10px;
    }
    
    .coming-soon-section {
        padding: 15px 0 30px;
    }
    
    .typewriter-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .swiper {
        height: 250px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .feature-icon {
        width: 180px;
        height: 101px; /* Maintaining 16:9 ratio */
    }
    
    header {
        top: 20px;
    }
    
    .logo {
        max-width: 120px;
        padding: 8px;
    }
    
    .hero .container {
        margin-top: 50px;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 70px;
    }
    
    .coming-soon-section {
        padding: 10px 0 25px;
    }
    
    .typewriter-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .typewriter-container {
        padding: 6px 15px;
    }
}

/* Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add delay for cascading effect */
.feature:nth-child(2),
.feature-item:nth-child(2) {
    transition-delay: 0.2s;
}

.feature:nth-child(3),
.feature-item:nth-child(3) {
    transition-delay: 0.4s;
}

.feature:nth-child(4),
.feature-item:nth-child(4) {
    transition-delay: 0.6s;
}

.feature:nth-child(5),
.feature-item:nth-child(5) {
    transition-delay: 0.8s;
}

/* Coming Soon Section */
.coming-soon-section {
    background-color: transparent;
    padding: 30px 0 50px;
    text-align: center;
    margin-top: 120px;
    position: relative;
    z-index: 10;
}

.typewriter-container {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: pulse-scale 3s infinite;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.3);
    z-index: 10;
}

.typewriter-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.2), transparent);
    animation: shine 3s infinite;
}

.typewriter-text {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--primary-color);
    margin: 0 auto;
    animation: 
        typing 4s steps(30, end) infinite,
        blink-caret 0.75s step-end infinite;
    text-shadow: 0 0 8px rgba(255, 107, 0, 0.7);
}

/* Shine effect animation */
@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Typewriter animation */
@keyframes typing {
    0% { width: 0; opacity: 0.7; }
    10% { opacity: 1; }
    40% { width: 100%; }
    60% { width: 100%; }
    80% { width: 0; opacity: 1; }
    90% { opacity: 0.7; }
    100% { width: 0; opacity: 0.7; }
}

/* Blinking cursor animation */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

/* Pulsing scale animation */
@keyframes pulse-scale {
    0% { transform: scale(1); }
    15% { transform: scale(1.1); }
    30% { transform: scale(1); }
    100% { transform: scale(1); }
} 