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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Krona One', sans-serif;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: #FFE135;
    color: #000;
}

.btn-primary:hover {
    background-color: #f9d400;
}

.btn-submit {
    background-color: #FFE135;
    color: #000;
    width: 100%;
    padding: 1.2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: #f9d400;
}

.btn-cookie {
    background-color: #FFE135;
    color: #000;
    padding: 0.7rem 1.5rem;
    margin: 0 0.5rem;
}

.btn-cookie-decline {
    background-color: transparent;
    border: 1px solid #FFE135;
    color: #FFE135;
}

/* Header Styles */
.header {
    padding: 1.5rem 0;
}

.logo-container {
    background-color: #FFE135;
    padding: 1.5rem;
    border-radius: 50px;
    text-align: center;
}

.logo {
    color: #000;
    font-size: 1.5rem;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    margin-bottom: 2rem;
}

/* Audience Section */
.audience {
    padding: 5rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.audience-item {
    text-align: center;
}

.audience-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.audience-image img {
    margin: 0 auto;
}

.audience-title {
    font-size: 0.9rem;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Direction Section */
.direction {
    padding: 5rem 0;
    background-color: #111;
}

.direction-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.direction-image {
    flex: 0 0 40%;
}

.direction-text {
    flex: 0 0 60%;
}

.direction-text .section-title {
    text-align: left;
}

/* Philosophy Section */
.philosophy {
    padding: 5rem 0;
}

.philosophy-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.philosophy-text {
    flex: 0 0 60%;
}

.philosophy-image {
    flex: 0 0 40%;
}

.philosophy-text .section-title {
    text-align: left;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #111;
}

.testimonials-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.testimonials-image {
    flex: 0 0 40%;
}

.testimonials-quotes {
    flex: 0 0 60%;
}

.testimonial {
    margin-bottom: 3rem;
}

.testimonial-author {
    font-weight: 700;
    text-align: right;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

input {
    width: 100%;
    padding: 1rem;
    background-color: #333;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Footer Styles */
.footer {
    padding: 2rem 0;
    background-color: #FFE135;
    color: #000;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: underline;
}

.footer-contact {
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-content a {
    text-decoration: underline;
    color: #FFE135;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.main-section h2 {
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.main-section {
    padding: 5rem 0;
}

.thank-section {
    padding: 5rem 0;
    text-align: center;
    background: #fff;
    color: #000;
}

.thank-page {
    background: #fff !important;
}

.thank-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .direction-content,
    .philosophy-content,
    .testimonials-content {
        flex-direction: column;
    }
    
    .direction-image,
    .direction-text,
    .philosophy-text,
    .philosophy-image,
    .testimonials-image,
    .testimonials-quotes {
        flex: 0 0 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-title {
        height: auto;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        word-break: break-all;
    }
}