/* Kirolbet - Main CSS Framework */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

section h2 {
    text-align: center;
}

/* Header Styles */
.header {
    background: #fff;
    border-bottom: 1px solid #FF8400;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #FF8400;
}

.nav a.active {
    color: #FF8400;
    font-weight: 600;
}

.nav a.active::after {
    width: 100%;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF8400;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    min-height: 44px;
}

.btn-primary {
    background: #FF8400;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 132, 0, 0.3);
}

.btn-primary:hover {
    background: #e67500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 0, 0.4);
}

.btn-secondary {
    background: #555;
    color: #fff;
    border: 1px solid #555;
}

.btn-secondary:hover {
    background: #444;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: #FF8400;
    border: 1px solid #FF8400;
}

.btn-ghost:hover {
    background: #FF8400;
    color: #fff;
    transform: translateY(-2px);
}

/* Gift Button (Icon only) */
.btn-gift {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #FF8400;
    background: transparent;
    color: #FF8400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-gift:hover {
    background: #FF8400;
    color: #fff;
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #FF8400;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.mobile-menu .cta-buttons {
    padding: 0 20px 20px;
    flex-direction: column;
    gap: 10px;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 400px;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    width: 20%;
    height: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
}

.slide-bg img {
    width: 100%;

}

.slide-content {
    color: #fff;
    text-align: left;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-content .btn {
    font-size: 1.1rem;
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(255, 132, 0, 0.3);
}

/* Slider Navigation */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-btn:hover {
    background: rgba(255, 132, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev {
    left: 30px;
}

.slider-nav-btn.next {
    right: 30px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #FF8400;
    border-color: #fff;
    transform: scale(1.3);
}

/* Responsive Slider Styles */
@media (max-width: 768px) {
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-content .btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
    
    .slider-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .slider-nav-btn.prev {
        left: 15px;
    }
    
    .slider-nav-btn.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slide-content .btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-nav-btn.prev {
        left: 10px;
    }
    
    .slider-nav-btn.next {
        right: 10px;
    }
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.section {
    margin-bottom: 60px;
}

.section h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.section h2 {
    font-size: 28px;
    color: #FF8400;
    margin-bottom: 20px;
}

.section h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.section a:not(.btn) {
    color: #FF8400;
    text-decoration: none;
    font-weight: 500;
}

header .container {
    max-width: unset;
}

.section a:not(.btn):hover {
    text-decoration: underline;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #FF8400;
    color: #fff;
    font-weight: 600;
}

tr:hover {
    background: #f8f9fa;
}

/* FAQ Section */
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 20px;
    display: none;
    line-height: 1.8;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #FF8400;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF8400;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .slider {
        height: 300px;
    }
    
    .section h1 {
        font-size: 32px;
    }
}

@media (max-width: 1600px) {
    .header-content {
        padding: 10px 0;
    }
    
    .header-content .nav {
        display: none;
    }
    
    .mobile-menu .nav  {
      align-items: center;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    
    .cta-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .slider {
        height: 250px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 22px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .section h1 {
        font-size: 28px;
    }
    
    .section h2 {
        font-size: 24px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .table-container {
        font-size: 14px;
    }
    
    th, td {
        padding: 10px 8px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    header .btn-gift {
        display: none;
    }
    
    .btn {
        padding: 12px 16px;
        min-height: 44px;
    }
    
    .slider {
        height: 200px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .section h1 {
        font-size: 24px;
    }
    
    .content-card {
        padding: 15px;
    }
}

@media (max-width: 375px) {
    header .cta-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    header .cta-buttons .btn {
        width: 100%;
    }

    header .btn-secondary {
        order: 2;
    }

    header .btn-primary {
        order: 1;
    }
} 

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-orange {
    color: #FF8400;
}

.bg-white {
    background: #fff;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #FF8400;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
