/* Base Styles */
:root {
    --primary: #FF3E00;
    --primary-light: rgba(255, 62, 0, 0.1);
    --secondary: #00C2FF;
    --dark: #0A0A0A;
    --darker: #050505;
    --light: #FFFFFF;
    --light-10: rgba(255, 255, 255, 0.1);
    --light-20: rgba(255, 255, 255, 0.2);
    --light-50: rgba(255, 255, 255, 0.5);
    --light-70: rgba(255, 255, 255, 0.7);
    --accent: #FFD700;
    --text: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --font-main: 'Inter', sans-serif;
    --easing: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-follower {
    position: fixed;
    width: 60px;
    height: 60px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease;
    mix-blend-mode: difference;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.5s var(--easing);
}

.navbar.scrolled {
    padding: 15px 5%;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    gap: 40px;
}

.menu-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.menu-item:hover, .menu-item.active {
    color: var(--light);
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s var(--easing);
}

.menu-item:hover::after, .menu-item.active::after {
    width: 100%;
}

.navbar-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-10);
    z-index: 99;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.1s linear;
}

/* Sections */
.fullscreen-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.3;
}

.section-content {
    width: 100%;
    height: 100%;
    padding: 120px 5% 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.content-left, .content-right {
    flex: 1;
    padding: 0 40px;
}

.content-full {
    width: 100%;
    text-align: center;
}

.section-number {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--light);
}

.section-text {
    max-width: 500px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-text p {
    margin-bottom: 20px;
}

.section-button {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--light-20);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s var(--easing);
    position: relative;
    overflow: hidden;
}

.section-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--easing);
}

.section-button:hover {
    border-color: transparent;
    color: var(--dark);
}

.section-button:hover::before {
    transform: scaleX(1);
}

.video-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.video-button i {
    font-size: 0.8rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-50);
    border-radius: 15px;
    margin-top: 15px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--light);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

.hero-social {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Strength Section */
.strength-section .section-content {
    align-items: center;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
}

.stack-item {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s var(--easing);
}

/* .stack-item.large {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    z-index: 1;
    background-image: url('../images/strength-1.png');
}

.stack-item.medium {
    width: 70%;
    height: 70%;
    top: 5%;
    left: 25%;
    z-index: 2;
    background-image: url('../images/strength-2.png');
}

.stack-item.small {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 40%;
    z-index: 3;
    background-image: url('../images/strength-3.png');
} */

/* Leadership Section */
.leadership-section .section-content {
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--light-10);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s var(--easing);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Negotiation Section */
.negotiation-section .section-content {
    align-items: center;
}

.interactive-quote {
    max-width: 500px;
    padding: 40px;
    background-color: var(--light-10);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    transition: transform 0.3s var(--easing);
}

.interactive-quote:hover {
    transform: translateY(-10px);
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-author {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: right;
}

/* Team Section */
.team-section .section-content {
    align-items: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.member {
    text-align: center;
    transition: transform 0.3s var(--easing);
}

.member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--light-10);
    margin: 0 auto 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--light-20);
    transition: all 0.3s var(--easing);
}

.ilnaz{
    background-image: url(/images/ilnaz.PNG);
}

.marat{
    background-image: url(/images/marat.PNG);
}

.alex{
    background-image: url(/images/alex.png);
}

.nik{
    background-image: url(/images/nik.png);
}

.silva{
    background-image: url(/images/silva.png);
}

.tati{
    background-image: url(/images/tati.PNG);
}

.member:hover .member-photo {
    border-color: var(--primary);
    transform: scale(1.05);
}

.member-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light);
}

.member-position {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Fun Section */
.fun-section .section-content {
    align-items: center;
    justify-content: center;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.interest-item {
    padding: 30px;
    background-color: var(--light-10);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s var(--easing);
    cursor: pointer;
}

.interest-item:hover {
    background-color: var(--primary-light);
    transform: translateY(-10px);
}

.interest-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.interest-name {
    font-weight: 500;
    color: var(--light);
}

/* Final Section */
.final-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-message {
    margin-bottom: 60px;
}

.final-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-title span {
    color: var(--primary);
}

.final-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.signature-block {
    margin-top: 60px;
}

.signature-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-20), transparent);
    margin-bottom: 20px;
}

.signature-names {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.signature-names span {
    font-weight: 500;
    color: var(--light-70);
}

.final-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

/* Particles */
.particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Confetti */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-content {
        flex-direction: column;
        padding-top: 150px;
        padding-bottom: 100px;
    }
    
    .content-left, .content-right {
        padding: 0;
        margin-bottom: 60px;
    }
    
    .content-right {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navbar-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-social {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }
    
    .team-members, .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .section-number {
        margin-bottom: 10px;
    }
    
    .section-title {
        margin-bottom: 20px;
    }
}







/* Floating wishes styles */
.floating-wishes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
    opacity: 0.2;
}

.wish-word {
    position: absolute;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    opacity: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    z-index: 3;
}

.wish-word.primary {
    color: var(--primary);
    font-size: 1.5rem;
}

.wish-word.secondary {
    color: var(--secondary);
}






/* Warm Words Section */
.warmwords-section .section-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.warm-words-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 40px auto;
}

.word-bubble {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 1rem;
    color: var(--text);
    border: 1px solid var(--light-20);
    cursor: pointer;
    transition: all 0.3s var(--easing);
    opacity: 0;
    transform: translateY(20px);
}

.word-bubble.show {
    opacity: 1;
    transform: translateY(0);
}

.word-bubble:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-3px) !important;
}

.word-bubble.highlight {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--dark);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 62, 0, 0.3);
}

#more-words-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#more-words-btn i {
    font-size: 0.9rem;
}