/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --secondary-color: #333;
    --background-color: #fff;
    --accent-color: #666;
    --transition-speed: 0.3s;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
}

/* Layout */
.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-icon {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-speed);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.section {
    min-height: 100vh;
    padding: 2rem;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.section.active {
    display: block;
    opacity: 1;
}

/* intro Section */
.intro {
    height: 200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    transform: translateY(200px);
    gap: 2%;
}

#intro-slogan, #intro-text {
    position: relative;
    z-index: 1;
}

#intro-slogan::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 160%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at left, rgba(120,180,255,0.18) 0%, rgba(120,180,255,0.10) 60%, rgba(120,180,255,0.0) 100%);
    filter: blur(24px);
}

#intro-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateY(-50%);
    width: 160%;
    height: 160%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at right, rgba(100,220,255,0.15) 0%, rgba(100,220,255,0.08) 60%, rgba(100,220,255,0.0) 100%);
    filter: blur(24px);
}

#intro-slogan {
    flex: 0 0 32%;
    flex-direction: column;
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: left;
}

#intro-text {
    flex: 0 0 26%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.1rem;
    align-items: flex-end;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.85);
}


/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 70%;
    height: 80%;
    max-width: 1200px;
    margin: 2rem auto;
    transform:translateY(80vh);
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1.2rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    justify-content: center;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    transform: none;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.dot {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: white;
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.work-item {
    cursor: pointer;
    transition: transform var(--transition-speed);
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-image {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    margin-bottom: 1rem;
}

.work-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.work-item p {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color var(--transition-speed);
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Footer */
.main-footer {
    padding: 2rem;
    text-align: center;
    background-color: #f5f5f5;
    transform:translateY(80vh);
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap'); 