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

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}
:root {
    --primary-color: #d6b072;
    --secondary-color: #ffe70f;
    --bg-color: #141416;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    &:hover {
        color: var(--primary-color);
    }
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #eee;
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: url('/images/image.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30vw 10vw #121215;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 680px;
    width: 100%;
    align-items: center;
    position: relative;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 2.5rem;
    background-color: #fff1;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.hero-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.btn-primary {
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.btn-primary {
    background: var(--secondary-color);
    color: #25282e !important;
}
.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.btn-primary:focus {
    outline: none;
}

/* Touch-friendly button sizing */
@media (hover: none) and (pointer: coarse) {
    .btn-primary {
        min-height: 44px;
        min-width: 44px;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* About Section */
#about {
    padding: 4rem 0;
}
.highlight {
    color: var(--primary-color);
}
.headlineA1 {
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 500;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 20px 0;
    border-top: 1px solid #333;
}
/* Responsive Design */


/* Mobile Styles */


/* Small Mobile Styles */
@media (max-width: 600px) {
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 1rem;
    }
    
    .hero-logo {
        width: 120px !important;
        height: 30px !important;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 1rem 1.2rem;
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .container {
        padding: 0 8px;
    }
    
    #about {
        padding: 1.5rem 0;
    }
    
    .headlineA1 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .aw_-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
    .hero-content {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .hero-logo {
        width: 100px !important;
        height: 25px !important;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1rem;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .container {
        padding: 0 6px;
    }
    
    .headlineA1 {
        font-size: 1em;
    }
    
    .aw_-content p {
        font-size: 0.85rem;
    }
}

/* Landscape Mobile Styles */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        gap: 0.25rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
