* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter Tight', sans-serif;
    background-color: #1a1a1a;
    color: white;
    font-weight: 700; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    position: relative;
    z-index: 10;
    background: transparent;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: block;
}

.logo path {
    transition: stroke 0.3s ease;
}

.logo:hover path {
    stroke: white;
}

.slogan {
    color: #9bf0e1;
    font-size: 1rem;
    font-weight: 700;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.grid-col-right {
    grid-column: 2;
}

.grid-col-full {
    grid-column: 1 / -1; 
}

.hero {
    min-height: 100vh;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; 
    background-image: url('img/hero_01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.55); 
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 75%;
    font-size: 3.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text strong {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid #9bf0e1; 
}

.bottom-hero-text {
    grid-column: 1 / -1;
    color: #9bf0e1;
    font-weight: 700;
    max-width: 75%;
    padding: 120px 0;
    font-size: 3.5rem;
    line-height: 1.2; 
}

.bottom-hero-text a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid #9bf0e1; 
}

.hero-content {
    flex: 1; 
    display: flex;
    align-items: center;
    padding: 120px 20px 0; 
}

.heading-2 {
    color: #9bf0e1;
    font-size: 3.5rem;
    padding: 0 0 80px 16px;
    grid-column: 2; 
    margin-left: 50%; 
}

.feature-list {
    grid-column: 1 / -1;
    display: grid;
    gap: 30px;
    width: 100%;
    border-top: 1px solid rgba(155, 240, 225, 0.5);
    padding-top: 40px;
}

.feature-item {
    grid-template-columns: 165px 1fr; 
    gap: 30px;
    border-bottom: 1px solid #9bf0e1;
    padding: 40px 0 70px;
    width: 100%;
    align-items: center; 
}

.feature-item-content {
    margin-left: 0;
}

.feature-icon {
    width: 220px;
    height: 240px;
    display: block;
    margin: auto;
    grid-column: 1;
    align-self: center;
}

.feature-content h3 {
    color: #9bf0e1;
    margin-bottom: 10px;
    font-size: 2.5rem;
    position: relative;
}

.feature-content h3.media,
.feature-content h3.media::before {
    color: #ff3b5b;
}
.feature-content h3.production,
.feature-content h3.production::before {
    color: #4ebb7d;
}
.feature-content h3.strategy,
.feature-content h3.strategy::before {
    color: #675da9;
}
.feature-content h3.workshops,
.feature-content h3.workshops::before {
    color: #ccde66;
}

.feature-content p {
    font-size: 1.75rem; 
    line-height: 1.4;
    color: #f2f2f2; 
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #9bf0e1;
    border: 2px solid #9bf0e1;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 10px;
    margin: 0; 
    width: fit-content;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: transparent;
    border: 2px solid #9bf0e1;
    color: white;
}

.button-container {
    grid-column: 1 / -1;
    margin-top: -80px;
    padding-bottom: 180px;
}

footer {
    width: 100%;
}

footer .grid-container {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: auto;
    border-top: 1px solid rgba(155, 240, 225, 0.5);
}

@media (min-width: 769px) {
    .feature-item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem;
        align-items: center;
    }

    .feature-content h3::before {
        content: '>';
        position: absolute;
        left: 0;
        color: #9bf0e1;
        font-size: 0.9em;
        font-weight: 700;
        transform: translateX(-0.9em);
        opacity: 0.9;
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
    }

    .feature-icon {
        margin-bottom: 1rem;
        order: -1;
    }

    .feature-content {
        padding-left: 0;
        text-align: center;
    }

    .feature-list {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-text, .bottom-hero-text {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    footer .grid-container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .grid-col-right {
        grid-column: 1;
    }

    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-icon {
        width: 154px;
        height: 168px;
        margin: 0 auto 30px;
    }

    .hero-text {
        max-width: 100%;
        font-size: 3rem;
    }

    .heading-2 {
        font-size: 2.5rem;
        grid-column: 1;
        margin-left: 0;
        text-align: center;
        padding-bottom: 60px;
        padding-left:0;
    }

    .feature-content h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .feature-content p {
        font-size: 1.5rem;
    }

    .bottom-hero-text {
        padding: 80px 20px;
        font-size: 3rem;
    }

    .button-container {
        padding-bottom: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    footer {
        padding: 40px 20px;
        font-size: 1.25rem;
    }

    .slogan {
        display: none;
    }

    .hero-content {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 2.2em;
    }

    .heading-2 {
        font-size: 2rem;
    }

    .feature-content h3 {
        /*font-size: 1.75rem;*/
        margin-bottom: 16px;
    }
    
    .feature-content p {
        font-size: 1.25rem;
    }

    .bottom-hero-text {
        padding: 60px 20px;
        font-size: 2.2rem;
    }

    footer {
        font-size: 1rem;
    }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
    .hero-content,
    .feature-list,
    .bottom-hero-text,
    .button-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.feature-list {
    grid-column: 1 / -1;
    display: grid;
    gap: 30px;
    width: 100%;
    border-top: 1px solid rgba(155, 240, 225, 0.5);
    padding-top: 40px;
}

.feature-item {
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(155, 240, 225, 0.5);
    padding: 40px 0 70px;
    width: 100%;
}

.last-feature {
    padding-bottom: 40px;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.button-outline {
    display: inline-block;
    padding: 10px 24px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #9bf0e1;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.button-outline:hover {
    background-color: #9bf0e1;
    color: #1a1a1a;
}