:root {
    --primary-color: #FF741F;
    --text-color: #000000;
    --font-family: 'Satoshi-Variable', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    /* Central orange concentration with increased transparency */
    background: radial-gradient(70% 70% at 50% 50%, rgba(235, 179, 133, 0.715) 0%, rgba(255, 255, 255, 1) 100%), #FFFFFF;
    color: var(--text-color);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.intro1 {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 2rem 4%;
    position: relative;
    z-index: 1;
}

/* Navigation */
.group-30 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 100;
}

.image-2 {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
}

.nav-item {
    font-weight: 800;
    font-size: 22px;
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-item:hover {
    opacity: 0.7;
}

.nav-work-with-us {
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.nav-work-with-us:hover {
    transform: translateY(-2px);
    background: #e6631a;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1100px;
    /* Increased to allow more horizontal space */
    margin: 0 auto;
    z-index: 10;
    padding-bottom: 5vh;
}

.headline {
    font-weight: 600;
    /* Reduced from 700 to match image */
    font-size: clamp(1.8rem, 3.8vw, 3.2rem);
    /* Slightly adjusted to fit line length */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    /* Increased to lower brand name */
    letter-spacing: -0.02em;
    width: 100%;
}

.brand-name {
    font-weight: 600;
    /* Adjusted for better hierarchy */
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.hero-work-with-us {
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 500;
    /* Reduced from 700 */
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-work-with-us:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-container {
    width: 100%;
    height: 35vh;
    position: absolute;
    bottom: -80px;
    /* Lifted slightly as requested */
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
}

.gallery-track {
    display: flex;
    align-items: flex-end;
    gap: 0px;
    width: 100%;
    justify-content: center;
    padding-bottom: 20px;
}

[class^="rectangle-8"] {
    width: 180px;
    height: 250px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
    /* Fallback */
}

/* Explicit paths to ensure visibility */
.rectangle-82 {
    background-image: url('../assets/index1.jpg');
    transform: rotate(-10deg) translateY(20px);
}

.rectangle-83 {
    background-image: url('../assets/index2.jpg');
    transform: rotate(-7deg) translateY(40px);
}

.rectangle-84 {
    background-image: url('../assets/index3.jpg');
    transform: rotate(-3deg) translateY(10px);
}

.rectangle-85 {
    background-image: url('../assets/index4.jpg');
    transform: rotate(2deg) translateY(30px);
}

.rectangle-86 {
    background-image: url('../assets/index5.jpg');
    transform: rotate(-2deg) translateY(20px);
}

.rectangle-87 {
    background-image: url('../assets/index6.jpg');
    transform: rotate(5deg) translateY(10px);
}

.rectangle-88 {
    background-image: url('../assets/index7.jpg');
    transform: rotate(10deg) translateY(40px);
}

.rectangle-89 {
    background-image: url('../assets/index8.jpg');
    transform: rotate(8deg) translateY(50px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .headline {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    [class^="rectangle-8"] {
        width: 140px;
        height: 200px;
    }
}

@media (max-height: 700px) {
    .hero-content {
        justify-content: flex-start;
        padding-top: 5vh;
    }

    .gallery-container {
        height: 20vh;
    }

    [class^="rectangle-8"] {
        height: 150px;
    }
}