/* Font Faces */
@font-face {
    font-family: 'Comico';
    src: url('../fonts/Comico_Complete/Fonts/WEB/fonts/Comico-Regular.woff2') format('woff2'),
         url('../fonts/Comico_Complete/Fonts/WEB/fonts/Comico-Regular.woff') format('woff'),
         url('../fonts/Comico_Complete/Fonts/WEB/fonts/Comico-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

body {
    font-family: 'Comico', 'Times New Roman', Georgia, serif;
    background: url('../assets/bg6.jpg') center/cover no-repeat fixed;
    color: #1a237e;
    overflow-x: hidden;
    cursor: none !important;
    min-height: 100vh;
    position: relative;
}

a, button, input, textarea, select {
    cursor: none !important;
}

/* Custom Cursor - Complete replacement */
.cursor {
    width: 80px;
    height: 80px;
    position: fixed;
    background: url('../image-removebg-preview (19).png') center/contain no-repeat;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    display: none;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 0.3rem;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.1);
    border: 2px solid #1a237e;
    z-index: 1000;
    animation: fadeIn 1s ease;
}

.language-toggle button {
    background: transparent;
    border: none;
    color: #1a237e;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: none !important;
    transition: all 0.3s ease;
    font-family: 'Comico', 'Times New Roman', serif;
    border-radius: 25px;
    position: relative;
    letter-spacing: 1px;
}

.language-toggle button:hover {
    transform: scale(1.05);
}

.language-toggle button.active {
    background: #1a237e;
    color: white;
    box-shadow: 0 2px 10px rgba(26, 35, 126, 0.3);
}


/* Main Content */
main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 4rem 2rem;
}

.content {
    max-width: 900px;
    margin: 0 auto;
}

.container {
    padding: 0 2rem;
}

/* Typography */
p {
    font-size: 2rem;
    line-height: 2.2;
    margin-bottom: 4rem;
    color: #1a237e;
    letter-spacing: -0.01em;
}


/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-text {
    font-size: 0.9rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: #1a237e;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-indicator.hide {
    opacity: 0;
    pointer-events: none;
}

.paragraph {
    opacity: 0.3;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.paragraph.reveal {
    opacity: 1;
    transform: translateY(0);
}

.paragraph.active {
    opacity: 1;
    transform: translateY(0);
}

.intro {
    font-size: 2.2rem;
    margin-bottom: 5rem;
}

/* Links */
.link {
    color: #1a237e;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: none !important;
}

.link.underline {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.link:hover {
    opacity: 0.7;
}

.hover-effect {
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 35, 126, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #1a237e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d1754;
}

/* Responsive */
@media (max-width: 768px) {
    p {
        font-size: 1.5rem;
    }
    
    .intro {
        font-size: 1.7rem;
    }
    
    .language-toggle {
        top: 1rem;
        right: 1rem;
        padding: 0.2rem;
    }
    
    .language-toggle button {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    
    .cursor {
        display: none;
    }
}

@media (max-width: 480px) {
    p {
        font-size: 1.3rem;
        line-height: 1.8;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Text selection */
::selection {
    background: rgba(26, 35, 126, 0.2);
    color: #1a237e;
}