/* 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-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 3rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-text {
    font-family: 'Fugaz One', cursive;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
}

.logo-arrow {
    font-size: 2.5rem;
    color: #fff;
    margin-left: 0.5rem;
    font-weight: 300;
}

.logo-subtitle {
    font-family: 'Fugaz One', cursive;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #fff;
    margin-top: -0.8rem;
    text-transform: uppercase;
}

/* Hero section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.arrow-animation {
    position: absolute;
    width: 60px;
    height: 20px;
    opacity: 0;
    animation: moveArrow 8s infinite linear;
}

.arrow-animation::before {
    content: '→';
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
    letter-spacing: -0.2em;
}

.arrow-animation:nth-child(1) {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.arrow-animation:nth-child(2) {
    top: 40%;
    left: -60px;
    animation-delay: 1.6s;
}

.arrow-animation:nth-child(3) {
    top: 60%;
    left: -60px;
    animation-delay: 3.2s;
}

.arrow-animation:nth-child(4) {
    top: 80%;
    left: -60px;
    animation-delay: 4.8s;
}

.arrow-animation:nth-child(5) {
    top: 30%;
    left: -60px;
    animation-delay: 6.4s;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tagline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 4rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.highlight {
    color: #4ade80;
    font-weight: 500;
}



/* Responsive design */
@media (max-width: 1024px) {
    .hero {
        padding: 7rem 2.5rem 4rem;
    }
    
    .tagline {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }
    
    .time-display {
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem 5rem;
        min-height: calc(100vh - 80px);
    }
    
    .header {
        margin-bottom: 2rem;
        padding: 1.5rem 2rem;
    }
    
    .hero {
        padding: 6rem 2rem 8rem;
        min-height: calc(100vh - 120px);
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .logo {
        align-items: flex-start;
    }
    
    .logo-main {
        justify-content: flex-start;
        align-items: center;
    }
    
    .logo-text {
        font-size: 2.2rem;
    }
    
    .logo-arrow {
        font-size: 1.8rem;
        margin-left: 0.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
        text-align: left;
        margin-top: 0.2rem;
    }
    
    .tagline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 3rem;
        line-height: 1.3;
    }
    
    .arrow-animation {
        width: 50px;
        height: 18px;
    }
    
    .arrow-animation::before {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem 5rem;
        min-height: calc(100vh - 100px);
    }
    
    .logo {
        align-items: flex-start;
    }
    
    .logo-main {
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-arrow {
        font-size: 1.4rem;
        margin-left: 0.25rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
        text-align: left;
        margin-top: 0.3rem;
    }
    
    .tagline {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 2rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .arrow-animation {
        width: 40px;
        height: 16px;
    }
    
    .arrow-animation::before {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .header {
        padding: 0.75rem 1rem;
    }
    
    .hero {
        padding: 3.5rem 1rem 6rem;
    }
    
    .logo {
        align-items: flex-start;
    }
    
    .logo-main {
        justify-content: flex-start;
        align-items: center;
        gap: 0.2rem;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-arrow {
        font-size: 1.2rem;
        margin-left: 0.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
        text-align: left;
        margin-top: 0.25rem;
    }
    
    .tagline {
        font-size: clamp(1.25rem, 8vw, 1.75rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .arrow-animation {
        display: none;
    }
}

/* Smooth scrolling and animations */
html {
    scroll-behavior: smooth;
}

.tagline {
    animation: fadeInUp 1s ease-out;
}

/* Typing Animation Styles */
.cursor {
    color: #4ade80;
    font-weight: 300;
    animation: blink 1.2s infinite;
    text-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80, 0 0 30px #4ade80;
}

.highlight {
    color: #4ade80;
    font-weight: 500;
    text-shadow: 0 0 5px #4ade80, 0 0 10px #4ade80;
    animation: glow-text 2s ease-in-out infinite alternate;
}

.highlight-letter {
    color: #4ade80;
    font-weight: 600;
    text-shadow: 0 0 8px #4ade80, 0 0 15px #4ade80;
    animation: glow-text 2s ease-in-out infinite alternate;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes glow-text {
    from {
        text-shadow: 0 0 5px #4ade80, 0 0 10px #4ade80;
    }
    to {
        text-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80, 0 0 30px #4ade80;
    }
}

@keyframes type-glow {
    0% {
        text-shadow: none;
    }
    100% {
        text-shadow: 0 0 5px #4ade80, 0 0 10px #4ade80;
    }
}

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

@keyframes moveArrow {
    0% {
        left: -60px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 60px);
        opacity: 0;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

/* Time Footer */
.time-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0 10px 0;
    z-index: 1000;
}

.time-display {
    display: flex;
    justify-content: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.time-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.city {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.time {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
}

/* Responsive design for time footer */
@media (max-width: 1024px) {
    .time-display {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .time-footer {
        padding: 1rem 2rem;
    }
    
    .time-display {
        gap: 3rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .city {
        font-size: 0.625rem;
        margin-bottom: 0.25rem;
    }
    
    .time {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .time-footer {
        padding: 1rem 0.5rem;
    }
    
    .time-display {
        gap: 1rem;
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
    }
    
    .time-zone {
        flex: 1;
        min-width: 0;
        max-width: 30%;
    }
    
    .city {
        font-size: 0.6rem;
        margin-bottom: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .time {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 320px) {
    .time-footer {
        padding: 0.75rem 0.25rem;
    }
    
    .time-display {
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .time-zone {
        max-width: 32%;
    }
    
    .city {
        font-size: 0.5rem;
        letter-spacing: 0.05em;
        margin-bottom: 0.2rem;
    }
    
    .time {
        font-size: 0.7rem;
    }
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-style: italic;
}

.contact-email {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-style: italic;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #4ade80;
    text-shadow: 0 0 5px rgba(74, 222, 128, 0.3);
}

/* Hover effects */
.logo:hover .logo-text {
    color: #4ade80;
    transition: color 0.3s ease;
}
