@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

@font-face {
    font-family: 'AgelastRegular'; 
    src: url('/fonts/AgelastRegular.woff'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AgelastRegular2'; 
    src: url('/fonts/AgelastRegular.woff2'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CatchyeDemo'; 
    src: url('/fonts/CatchyeDemo.woff'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CatchyeDemo2'; 
    src: url('/fonts/CatchyeDemo.woff2'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GaretBook'; 
    src: url('/fonts/Garet-Book.woff'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GaretBook2'; 
    src: url('/fonts/Garet-Book.woff2'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GoodTimesRg'; 
    src: url('/fonts/GoodTimesRg-Regular.woff'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GoodTimesRg2'; 
    src: url('/fonts/GoodTimesRg-Regular.woff2'); 
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --glass-effect: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-material: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 5px -1px rgba(0, 0, 0, 0.12), 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.dark {
    --glass-effect: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'GaretBook', sans-serif! important;
    transition: background-color 0.5s, color 0.5s;
}




.goodTimes{
    font-family: 'GoodTimesRg', sans-serif;
    font-weight: normal;
    font-style: normal;
}

.agelastRegular {
    font-family: 'AgelastRegular', sans-serif;
    font-weight: normal;
    font-style: normal;
    letter-spacing: .15em;
}

.catchyeDemo {
    font-family: 'catchyeDemo', sans-serif;
    font-weight: normal;
    font-style: normal;
}

.garetBook {
    font-family: 'GaretBook', sans-serif;
    font-weight: normal;
    font-style: normal;
}

.buttonBox {
    border: 2px solid #8b5cf6;
    border-radius: 0px 30px 0px 30px! important;
    /* background: transparent; */
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.buttonBox2 {
    border: 2px solid #fff;
    border-radius: 30px 0px 30px 0px! important;
    /* background: transparent; */
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.startProject {
    border: 2px solid #fff;  
    background: transparent;
    color: #fff;
    transition: all 0.3s ease-in-out;
}


.svgHandle {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: block;
    margin: auto;
}


.bg-gradient-primary {
    background: var(--primary-gradient);
}

.bg-gradient-secondary {
    background: var(--secondary-gradient);
}

.glass-nav {
    background: var(--glass-effect);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.material-card {
    box-shadow: var(--shadow-material);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

/* Custom Scrollbar for modern feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.dark ::-webkit-scrollbar-track {
    background: #1a1a1a;
}
.dark ::-webkit-scrollbar-thumb {
    background: #444;
}

/* Animation classes for Intersection Observer */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media queries for different screen sizes */
@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 576px) {
   a#exploreBtn {
       margin-bottom: 1em;
       height: 50%;
   }
    
}

@media screen and (max-width: 480px) {
    
}   