:root {
  --brand-yellow: #ffd800;
  --brand-rose: #8c2a57;
}

/* Background wrapper - Performance Improved */
.page-bg {
    position: relative;
    min-height: 100vh;
}

.page-bg::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/PHOTO-2024-07-02-20-47-43-1.jpg') center/cover no-repeat;
    z-index: -1;
}

/* Hero */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    margin-top: 70px; 
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1200px;
    width: 100%;
}

.hero-text-container {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.hero-text-container h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--brand-yellow);
}

.hero-text-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 450px;
    color: #f0f0f0;
}

.btn-read-more {
    display: inline-block;
    background: var(--brand-yellow);
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.btn-read-more:hover {
    background-color: var(--brand-rose);
    color: #fff;
    transform: scale(1.05);
}

.hero-video-container {
    flex: 1;
    padding-left: 20px;
    display: flex;
    justify-content: center;
}
.hero-video-container video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border: 4px solid var(--brand-yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
    .hero-text-container {
      padding-right: 0;
      margin-bottom: 30px;
    }
    .hero-text-container p {
      max-width: 100%;
    }
    .hero-video-container {
      padding-left: 0;
    }
}
@media (max-width: 576px) {
    .hero-text-container h1 {
      font-size: 2.5rem;
    }
    .hero-text-container p {
      font-size: 1rem;
    }
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
}
.feature-intro,
.feature-highlight {
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.feature-intro {
    background: #fff;
}
.feature-highlight {
    background: linear-gradient(135deg, var(--brand-rose), var(--brand-yellow));
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.feature-highlight img {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    border: 3px solid var(--brand-yellow);
}
.feature-highlight__content {
    flex: 2;
    margin-left: 1.5rem;
}

/* Product Section */
.product-showcase {
    background: #fff;
    padding: 3rem 2rem;
    text-align: center;
}
.product-gallery {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}
.product-gallery img {
    border-radius: 12px;
    height: 300px;
    border: 3px solid var(--brand-rose);
}
.product-cta {
    background-image: url("/static/images/067A9254-1024x683.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 4rem 2rem;
    color: #fff;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1000px;
    background-color: rgba(140, 42, 87, 0.45);
    background-blend-mode: overlay;
    height: 300px;
    border: 3px solid var(--brand-yellow);
}
.product-cta button {
    width: 200px;
    height: 50px;
    background: var(--brand-yellow);
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.product-cta button:hover {
    background: var(--brand-rose);
    color: #fff;
    transform: scale(1.05);
}

/* Value Propositions */
.value-propositions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 16px;
}
.value-prop {
    flex: 1;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-prop:nth-child(2) {
    background: linear-gradient(135deg, var(--brand-rose), var(--brand-yellow));
    color: #fff;
}
.value-prop h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--brand-rose);
}
.value-prop p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}
.value-prop:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .value-propositions {
      flex-direction: column;
    }
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
}
.testimonials-top {
    background: var(--brand-yellow);
    padding: 4rem 2rem;
}
.testimonials-top h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-rose);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.testimonials-top h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #222;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-top p {
    font-size: 1rem;
    color: #444;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}
.testimonials-bottom {
    background: var(--brand-rose);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    color: #fff;
}
.partner-logos img {
    height: 70px;
    width: auto;
    filter: grayscale(40%);
    transition: transform 0.3s ease, filter 0.3s ease;
    margin: 0 100px;
}
.partner-logos img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}
@media (max-width: 768px) {
    .testimonials-top h1 {
      font-size: 1.8rem;
    }
    .partner-logos img {
      height: 60px;
    }
}

/* News */
.news {
    background: #fff;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.news h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    grid-column: 1 / -1;
    color: var(--brand-rose);
}
.news-headline,
.news-article,
.news-image {
    text-align: left;
    padding: 1.5rem;
    border-radius: 12px;
    background: #fdfdfd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.news-expertise {
    background-color: var(--brand-rose);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 2rem auto;
    font-family: Arial, sans-serif;
    border: 3px solid var(--brand-yellow);
}
.news-expertise h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--brand-yellow);
}
.accordion-item {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    font-size: 1rem;
    transition: background 0.3s ease;
}
.accordion-header:hover {
    background: rgba(255, 255, 255, 0.1);
}
.accordion-header .arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1rem;
    font-size: 0.95rem;
    color: #f0f0f0;
}
.accordion-content.show {
    max-height: 200px;
    padding: 0.5rem 1rem;
}
.news img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.news button {
    background: var(--brand-yellow);
    border: none;
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.news button:hover {
    background: var(--brand-rose);
    color: #fff;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: white;
}
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(140, 42, 87, 0.45);
    z-index: 0;
}
.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}
.contact-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
    color: var(--brand-yellow);
}
h2 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--brand-yellow);
}
.description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.cta-button {
    background-color: var(--brand-yellow);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: var(--brand-rose);
    color: #fff;
    transform: scale(1.05);
}

/* Responsive Global */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    nav .menu {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .feature-highlight {
        flex-direction: column;
    }
    .feature-highlight__content {
        margin-left: 0;
        margin-top: 1.5rem;
    }
    .value-propositions {
        flex-direction: column;
    }
    .news {
        grid-template-columns: 1fr;
    }
}
