

@font-face {
  font-family: 'b1';
  src: url(../fonts/b1.ttf);
}

@font-face {
  font-family: 'abrama';
  src: url(../fonts/abrama.ttf);
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'abrama', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #0f172a;
}


.main-header {
    width: 100%;
    background: #121724;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.header-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    width: 150px;
}

.header-logo img {
    width: 150px;
    padding: 10px 0px;
}

.logo-accent {
    color: #38bdf8;
}


.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}


.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}


.nav-link.nav-btn {
    background: #ffffff;
    color: #2563eb;
    margin-left: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-link.nav-btn:hover {
    background: #f1f5f9;
    color: #1d4ed8;
    transform: translateY(-1px);
}


.hamburger-btn, .menu-close-btn, .menu-overlay {
    display: none;
}


.main-content {
    max-width: 1300px;
    width: 100%;
    margin: 30px auto;
    padding: 0 24px;
}



@media (max-width: 768px) {
    .header-container {
        padding: 0 10px;
        height: 64px;
    }

   
    .hamburger-btn {
        display: block;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 22px;
        cursor: pointer;
        padding: 8px;
        transition: transform 0.2s;
    }
    
    .hamburger-btn:active {
        transform: scale(0.9);
    }

    
    .header-nav {
        position: fixed;
        top: 0;
        right: -300px; 
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.85); 
        backdrop-filter: blur(12px);       
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 24px 24px;
        gap: 12px;
        z-index: 2001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    }

  
    .header-nav.open {
        right: 0;
    }

    
    .nav-link {
        width: 100%;
        color: rgba(255, 255, 255, 0.8);
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
        border-left: 3px solid transparent;
    }

    .nav-link:hover, .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: #38bdf8;
        border-left-color: #38bdf8; 
        padding-left: 20px; 
    }

    
    .nav-link.nav-btn {
        background: #38bdf8;
        color: #0f172a;
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }
    
    .nav-link.nav-btn:hover {
        background: #0ea5e9;
        color: #ffffff;
    }

    
    .menu-close-btn {
        display: block;
        position: absolute;
        top: 16px;
        left: 20px;
        background: none;
        border: none;
        color: #94a3b8;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
    }
    
    .menu-close-btn:hover {
        color: #ffffff;
    }

    
    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(2px);
        z-index: 2000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        
        pointer-events: auto;
    }

        .footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 0 16px;
    }

       .hero-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-container {
        gap: 40px;
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column; 
        width: 100%;
    }

    .hero-btn-primary, .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: 1fr; 
        gap: 12px;
        padding-top: 30px;
    }
    
    .feature-card {
        padding: 12px 16px;
    }
}




.main-footer {
    width: 100%;
    background: #0f172a; 
    color: #94a3b8;      
    border-top: 1px solid #1e293b;
    padding: 24px 0;
    margin-top: auto;    
}


.footer-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    font-size: 14px;
}


.footer-brand {
    color: #ffffff;
    font-weight: 600;
}


.footer-credits {
    font-weight: 500;
}

.author-link {
    color: #38bdf8; 
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(56, 189, 248, 0.05);
    transition: all 0.2s ease;
}


.author-link:hover {
    color: #ffffff;
    background: #2563eb; 
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}





.hero-section {
    width: 100%;
    min-height: calc(85vh - 72px); 
    background: #0f172a; 
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0;
}


.hero-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}
.blur-1 {
    width: 400px;
    height: 400px;
    background: #2563eb;
    top: -100px;
    left: -100px;
}
.blur-2 {
    width: 500px;
    height: 500px;
    background: #38bdf8;
    bottom: -150px;
    right: -100px;
}


.hero-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}


.hero-content {
    max-width: 680px; 
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}


.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(to right, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 36px;
}


.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}


.hero-btn-primary {
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    transition: all 0.25s ease;
}

.hero-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}


.hero-btn-secondary {
    color: #ffffff;
    text-decoration: none;
        text-align: center;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}


.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}


.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(30, 41, 59, 0.5);
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.15);
    color: #38bdf8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-info h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.feature-info p {
    color: #64748b;
    font-size: 13px;
    margin-top: 2px;
}


@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-features {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 576px) {
    
.hero-title {
        font-size: 25px;
                text-align: center;
    }
    
    .hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 36px;
}
    
    .hero-features {
        grid-template-columns: 1fr; 
        gap: 12px;                  
        padding-top: 30px;
    }
    
    .feature-card {
        width: 100%;                
        padding: 12px 16px;
    }
}


/* ანიმაციის საბაზისო კლასი */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ანიმაციის ლოგიკა */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* პატარა ეფექტი ბარათებისთვის, როცა მაუსს მიიტანენ (Hover) */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(29, 155, 240, 0.15);
}

