/* Variables */
:root {
    --primary: #FFD600;
    --black: #111111;
    --white: #FFFFFF;
    --gray-bg: #F9FAFB;
    --text-main: #111111;
    --text-muted: #6B7280;
    --font-main: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(180deg, transparent 60%, var(--primary) 60%);
    padding: 0 0.2em;
}

.highlight-yellow {
    background-color: var(--primary);
    color: var(--black);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    line-height: 1;
}

.logo .smiley {
    font-size: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-btn {
    background: var(--primary);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}

.theme-toggle {
    background: var(--white);
    border: 2px solid var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    position: fixed;
    right: 5%;
    top: 5rem;
    z-index: 100;
    box-shadow: 2px 2px 0px var(--black);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}

.btn-black {
    background: var(--black);
    color: var(--white);
}

.btn-outline-black {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    background: radial-gradient(circle at center, #FFFDE7 0%, var(--white) 70%);
    text-align: center;
}

.badge {
    background: var(--white);
    border: 1px solid #E5E7EB;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-divider {
    color: #D1D5DB;
}

/* About Section */
.about {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.about p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Steps Section */
.steps-section {
    padding: 6rem 5%;
    background: var(--gray-bg);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #F3F4F6;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number span {
    position: absolute;
    right: -15px;
    bottom: -5px;
    font-size: 1.2rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Destinations Section */
.destinations {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.view-all {
    font-weight: 600;
    border-bottom: 2px solid var(--black);
    padding-bottom: 2px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dest-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

.dest-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.dest-badge {
    background: var(--primary);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: inline-block;
}

.dest-content h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-column h4 {
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.link-column p {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-bottom {
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
    border-top: 1px solid #374151;
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    .stat-divider { display: none; }
    
    .destinations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dest-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
