* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 40px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(3px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.brand-title {
    font-size: 12px;
    font-weight: 400;
    color: #888888;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    margin-top: 10px;
}

.nav-item {
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #F1A04B;
}

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/icarus1.jpg') center center/cover no-repeat;
    opacity: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.hero-left {
    flex: 1;
    padding-right: 50px;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 25px;
    font-family: "Texturina", serif;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInFromBottom 1.5s ease-out 0.3s forwards;

}

.hero-title {
    font-size: 110px;
    font-weight: 900;
    line-height: 0.85;
    color: #ffffff;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInFromBottom 1.5s ease-out 0.5s forwards;
}

@keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.title-line {
    display: block;
}

.hero-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 80px;
}

.center-section {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 300px;
            margin-bottom: 150px;
        }

        .year-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
            opacity: 0;
            transform: translateY(-100px);
            animation: slideInFromAbove 2.5s ease-out 0.5s forwards;
}

@keyframes slideInFromAbove {
            from {
                opacity: 0;
                transform: translateY(-100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }

        .star {
            font-size: 2rem;
            opacity: 0.8;
        }

        .year {
            font-size: 2.5rem;
            font-weight: 300;
            line-height: 1;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            width: 140px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);


        }

        .year img {
            width: 80px;
            margin: 0 auto;
        }


.hero-right {
    flex: 1;
    text-align: right;
    padding-left: 50px;
    padding-top: 100px;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInFromBottom 1.5s ease-out 0.1s forwards;
}

@keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.hero-text {
    font-size: 14px;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.picture-section {
    padding: 120px 40px;
    background-color: #060606;
}

.picture-container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.picture-box {
    height: 250px;
    width: 1400px;
    background: url(images/icarus4.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}


.exploring-text {
    flex: 1;
}

.exploring-title {
    font-size: 100px;
    font-weight: 900;
    line-height: 0.9;
    color: #ffffff;
}

.exploring-title div {
    display: block;
}

.creative-section {
    padding: 20px 40px 150px;
    background-color: #060606;
    position: relative;
}

.creative-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.creative-content {
    max-width: 550px;
}

.creative-heading {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 35px;
    font-family: "Texturina", serif;
}

.creative-description {
    font-size: 14px;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 45px;
}

.see-work-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.see-work-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.circle-decoration {
    position: absolute;
    right: 80px;
    bottom: 200px;
    width: 280px;
    height: 280px;
    border: 3px solid #333333;
    border-radius: 50%;
    opacity: 1;
}

.circle-decoration img {
    width: 300px;
    height: auto;
}

.footer {
    padding: 40px;
    background-color: #000000;
    border-top: 1px solid #222222;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 11px;
    color: #666666;
    font-weight: 300;
}

.footer-right {
    display: flex;
    gap: 35px;
}

.footer-link {
    color: #888888;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}


@media (max-width: 1200px) {
    .hero-title {
        font-size: 90px;
    }
    
    .exploring-title {
        font-size: 70px;
    }
    
    .picture-container {
        gap: 80px;
    }
    
    .circle-decoration {
        width: 220px;
        height: 220px;
        right: 40px;
    }

    .picture-box {
        overflow: hidden;
        display: flex;
    }

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 25px;
        margin-top: 0;
    }

    .brand-name {
        color: #F1A04B;
    }

    .brand-title{
        color: white;
        text-align: center;
    }

    .nav-item {
    color: white;
    }

    .nav-item:hover {
    color: #F1A04B;
}
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-top: 0px;
    }
    
    .hero-left,
    .hero-right {
        padding: 0;
    }
    
    .hero-center {
        padding: 0;
    }
    
    .hero-title {
        font-size: 60px;
    }

    .hero-text {
        text-align: center;
    }

     .creative-content {
        text-align: center;
    }
    
    .picture-container {
        flex-direction: column;
        gap: 60px;
        overflow: hidden;
    }
    
    .picture-box {
        height: 350px;
    }
    
    .exploring-title {
        font-size: 50px;
        text-align: center;
    }
    
    .circle-decoration {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .hero-section {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 45px;
    }
    
    .picture-section {
        padding: 200px 20px;

    }
    .creative-section {
        padding: 5px 20px;

    }

    .creative-content {
        text-align: center;
    }
    
    .exploring-title {
        font-size: 35px;
    }
    
    .creative-description {
        font-size: 12px;
    }
    
    .picture-box {
        height: 280px;
    }
    
    .picture-text {
        font-size: 30px;
    }
}