:root {
    --primary: #ff6b6b;
    --secondary: #4ecdc4;
    --dark: #292f36;
    --light: #f7fff7;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-image: url('alanya.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 47, 54, 0.9) 0%, rgba(41, 47, 54, 0.7) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 4rem 0;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin-bottom: 2rem;
    color: rgba(247, 255, 247, 0.8);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.pulse {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse-anim 1.5s infinite;
}

@keyframes pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.progress-container {
    width: 100%;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(247, 255, 247, 0.9);
}

.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.progress-bar-fill {
    height: 100%;
    width: 0%; /* Starts at 0 for animation */
    background: linear-gradient(
        -45deg, 
        rgba(255, 255, 255, 0.25) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.25) 50%, 
        rgba(255, 255, 255, 0.25) 75%, 
        transparent 75%, 
        transparent
    ), linear-gradient(90deg, var(--secondary), var(--primary));
    background-size: 20px 20px, 100% 100%;
    border-radius: 20px;
    transition: width 2s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
    animation: moveStripes 1s linear infinite;
}

@keyframes moveStripes {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 20px 20px, 0 0; }
}

.sneak-peek {
    width: 100%;
    margin-top: 2rem;
}

.sneak-peek h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
    animation-delay: calc(1s + var(--card-delay));
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.tour-card:hover .card-img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    position: relative;
    background: linear-gradient(to top, rgba(41, 47, 54, 1) 0%, rgba(41, 47, 54, 0.8) 100%);
    z-index: 2;
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(247, 255, 247, 0.7);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }

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

/* Floating Background Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.floating-elements i {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
}

.plane-anim {
    font-size: 15rem;
    top: 20%;
    left: -20%;
    animation: flyPlane 20s linear infinite;
}

.compass-anim {
    font-size: 10rem;
    bottom: 10%;
    right: 5%;
    animation: floatItem 8s ease-in-out infinite;
}

.map-anim {
    font-size: 8rem;
    top: 15%;
    right: 15%;
    animation: floatItem 10s ease-in-out infinite reverse;
}

.camera-anim {
    font-size: 6rem;
    bottom: 20%;
    left: 10%;
    animation: floatItem 9s ease-in-out infinite 1s;
}

@keyframes flyPlane {
    0% { transform: translate(0, 0) rotate(15deg); }
    100% { transform: translate(140vw, -30vh) rotate(15deg); }
}

@keyframes floatItem {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
