/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
}

ul {
    list-style: none;
    display: flex;
}

ul li {
    margin-left: 20px;
}

ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #ffd700;
}

/* Banner Section */
.banner {
    position: relative;
    overflow: hidden;
}

.running-text {
    font-weight: bold;
    font-size: 1.1rem;
}

.banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Info Section */
.info {
    text-align: center;
}

.btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hidden {
    display: none;
}

/* Contact Section */
.contact-section {
    min-height: 60vh;
}

.contact-info {
    height: fit-content;
}

.contact-info h4 {
    color: #495057;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    ul {
        margin-top: 10px;
    }

    .banner .row {
        text-align: center;
    }

    .running-text {
        font-size: 0.9rem;
    }
}

/* Premium Touches */
.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rounded {
    border-radius: 10px !important;
}

.bg-gradient {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* Typed.js cursor styling */
.typed-cursor {
    opacity: 1;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
