/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(188, 24, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(188, 24, 35, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 1400px;
    width: 100%;
    z-index: 1;
    position: relative;
}

/* Welcome Title */
.welcome-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #BC1823 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(188, 24, 35, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1) drop-shadow(0 0 20px rgba(188, 24, 35, 0.3)); }
    100% { filter: brightness(1.1) drop-shadow(0 0 30px rgba(188, 24, 35, 0.5)); }
}

/* Slider Container */
.slider-container {
    margin: 2rem 0 3rem 0;
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 900px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(188, 24, 35, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .slider {
        height: 500px;
        width: 350px;
        max-width: 350px;
    }
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

@media (max-width: 768px) {
    .desktop-img {
        display: none;
    }
    
    .mobile-img {
        display: block;
    }
}

/* Slider Navigation Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(188, 24, 35, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #BC1823;
    box-shadow: 0 0 20px rgba(188, 24, 35, 0.6);
    transform: scale(1.2);
}

/* Coming Soon Section */
.coming-soon {
    margin: 2rem 0;
}

.coming-soon h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #BC1823;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 1rem;
}

.construction-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Contact Section */
.contact {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-top: 1px solid rgba(188, 24, 35, 0.3);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.contact-intro {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.contact-divider {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #BC1823;
    text-decoration: none;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border: 2px solid #BC1823;
    border-radius: 50px;
    background: rgba(188, 24, 35, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phone-link:hover {
    background: rgba(188, 24, 35, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(188, 24, 35, 0.4);
}

.phone-icon {
    font-size: 1.3em;
    animation: bounce 2s ease-in-out infinite;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #BC1823;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    padding: 1rem 2rem;
    border: 2px solid #BC1823;
    border-radius: 50px;
    background: rgba(188, 24, 35, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.email-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(188, 24, 35, 0.2), transparent);
    transition: left 0.5s ease;
}

.email-link:hover::before {
    left: 100%;
}

.email-link:hover {
    background: rgba(188, 24, 35, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(188, 24, 35, 0.3);
}

.email-icon {
    font-size: 1.2em;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero {
        padding: 1rem 0.5rem;
    }
    
    .welcome-title {
        margin-bottom: 2rem;
    }
    
    .slider-container {
        margin: 1.5rem 0 2rem 0;
    }
    
    .slider {
        height: 500px;
        width: 350px;
        max-width: 350px;
    }
    
    .contact {
        padding: 2rem 0.5rem;
    }
    
    .email-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling and animations */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.slide img {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for interactive elements */
.dot:hover,
.email-link:hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.dot:focus,
.email-link:focus {
    outline: 2px solid #BC1823;
    outline-offset: 2px;
} 