/* ============================================
   Fashion Garden - Main Styles
   ============================================ */

/* CSS Variables */
:root {
    --color-pink: #ea5183;
    --color-pink-dark: #c03664;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray: #555555;
    --color-gray-light: #555555;
    --color-bg-dark: #1a1a1a;
    --font-primary: 'Montserrat', sans-serif;
    --container-width: 1650px;
    --container-padding: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-gray);
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.main {
    flex: 1;
}

/* Buttons */
.button-pink {
    width: 100%;
    max-width: 300px;
    display: inline-block;
    padding: 18px 16px;
    background-color: var(--color-pink);
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-pink:hover {
    background-color: var(--color-pink-dark);
}

/* Section Title */
.section-title {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
}

.section-title span {
    color: #ea5183;
}

/* Section */
.section {
    padding: 80px 0;
}

/* ============================================
   HEADER — moved to header.css
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

.hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-bottom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-socials__link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.hero-socials__link:hover {
    background-color: var(--color-pink);
}

.hero-socials__link img {
    width: 24px;
    height: 24px;
}

/* ============================================
   COMPANY SECTION
   ============================================ */
.company {
    background-color: #FFFFFF;
    color: var(--color-text-dark);
}

.company-top {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.company-top p {
    font-size: 18px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.company-left__title {
    color: var(--color-white);
}

.company-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.company-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.company-block__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.company-block__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-block__text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-info__title {
    color: var(--color-white);
}

.about-info__text {
    margin-bottom: 32px;
}

.about-info__text p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.about-info__text span {
    color: var(--color-pink);
}

.about-slider {
    border-radius: 16px;
    overflow: hidden;
}

.about-slider__block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ============================================
   PLANTATIONS SECTION
   ============================================ */
.plantations {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
}

.plantations-top {
    text-align: center;
    margin-bottom: 60px;
}

.plantations-top__title {
    color: var(--color-white);
}

.plantations-top__text p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.plantations-bottom {
    margin-top: 80px;
}

.plantations-bottom__title {
    text-align: center;
    color: var(--color-white);
}

.plantations-steps {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.plantations-tab {
    position: relative;
}

.plantations-tab__button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.plantations-tab__button:hover,
.plantations-tab__button.active {
    background-color: var(--color-pink);
}

.plantations-tab__button img {
    width: 40px;
    height: 40px;
}

.plantations-block {
    display: none;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    padding: 24px;
    border-radius: 16px;
    min-width: 300px;
    z-index: 10;
}

.plantations-block.active {
    display: block;
}

.plantations-block__step {
    color: var(--color-pink);
    font-weight: 700;
    margin-bottom: 12px;
}

.plantations-block__text {
    margin-bottom: 16px;
    opacity: 0.9;
}

.plantations-block__img img {
    border-radius: 8px;
    max-height: 150px;
    object-fit: cover;
}

/* ============================================
   ASSORTMENT SECTION
   ============================================ */
.assortment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.assortment-left img {
    width: 100%;
    height: 660px;
    object-fit: cover;
}

.assortment-right__content {
    height: 100%;
    margin-bottom: 32px;
}

.assortment-right__content p {
    margin-bottom: 16px;
}

.assortment-right__content ul {
    margin-top: 16px;
}

.assortment-right__content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}



/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    background-color: #FFFFFF;
}

.reviews__title {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.reviews-general {
    background-color: #FFFFFF;
    color: var(--color-white);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.reviews-general__icon {
    margin-bottom: 16px;
}

.reviews-general__title {
    font-size: 24px;
    margin-bottom: 12px;
}

.reviews-block {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reviews-block__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-pink);
}

.reviews-block__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-light);
}

.reviews-slider {
    display: none;
}

/* ============================================
   FLOWERS SECTION
   ============================================ */
.flowers {
    background-color: var(--color-white);
}

.flowers-top {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 40px;
}

.flowers-slider__block img {
    border-radius: 16px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ============================================
   TRAVEL SECTION
   ============================================ */
.travel {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.travel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.travel-left__title {
    color: var(--color-white);
}

.travel-left__content {
    margin-bottom: 24px;
}

.travel-left__content.hidden {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.travel-left__content.hidden::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--color-bg-dark));
}

.travel-left__content p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.travel-left__list {
    margin: 24px 0;
}

.travel-left__list ul {
    margin-top: 12px;
}

.travel-left__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.travel-left__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-pink);
}

.travel-left__all-button {
    color: var(--color-pink);
    font-size: 14px;
    text-transform: uppercase;
}

.travel-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.travel-videos__item-player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.travel-videos__item-video video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.travel-videos__item-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background-color: #ea5183;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.travel-videos__item-button::after {
    content: '';
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background-color: rgba(234, 81, 131, 0.3);
    border-radius: 50%;
    z-index: -1;
}

.travel-videos__item-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.travel-videos__item-button svg {
    width: 30px;
    height: 30px;
    padding-left: 5px;
}

.travel-videos__item-button svg path {
    fill: white;
}

.travel-videos__item-text {
    text-align: center;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
}

.travel-gallery__block img {
    border-radius: 16px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-left__img {
    display: none;
}

.founder-right img {
    border-radius: 16px;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.founder-info {
    margin-top: 32px;
}

.founder-info__text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--color-gray-light);
}

.founder-info__name {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-pink);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    background-color: #FFFFFF;
}

.team-top {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.team-tabs__button {
    padding: 14px 24px;
    background-color: var(--color-white);
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.team-tabs__button:hover,
.team-tabs__button.active {
    border-color: var(--color-pink);
    color: var(--color-pink);
}

.team-panel {
    display: none;
}

.team-panel.active {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

/* Team styles moved to home.css */

.direction-block {
    width: 485px;
    flex-shrink: 0;
}

.direction-block__panel {
    width: 100%;
    min-width: 485px;
    height: auto;
    aspect-ratio: 484/540;
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
}

.direction-block__panel.active {
    display: flex;
}

.direction-block__panel img {
    max-width: 100%;
    max-height: 100%;
}

.direction-tabs {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.direction-tabs__button {
    font-family: 'DIN Pro Cond', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
}

.direction-tabs__button:hover {
    color: #ea5183;
}

.direction-tabs__button.active {
    color: #ea5183;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community {
    background-color: #FFFFFF;
    color: var(--color-white);
    text-align: center;
}

.community__title {
    color: var(--color-white);
}

.community__text {
    color: #555555;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    opacity: 0.9;
}

.community-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.community-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.community-block__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.community-block__icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.community-block__icon img {
    width: 28px;
    height: 28px;
}

.community-block__link {
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news__title {
    text-align: center;
    margin-bottom: 40px;
}

.news-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-block {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.news-block__img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-block__text {
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
}

.news-block__link {
    display: block;
    margin: 0 16px 16px;
}

.news-all__link {
    display: block;
    text-align: center;
    margin-top: 32px;
    color: var(--color-pink);
    font-weight: 600;
}

/* ============================================
   ACADEMY SECTION
   ============================================ */
.academy {
    background-color: #f5f5f5;
}

.academy-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.academy-head__subtitle {
    font-size: 20px;
    color: var(--color-pink);
    margin-bottom: 24px;
}

.academy-left__text {
    margin-bottom: 16px;
    color: var(--color-gray-light);
}

.academy-left__list {
    margin: 24px 0;
}

.academy-left__subtitle {
    font-weight: 700;
    margin-bottom: 12px;
}

.academy-left__list ul {
    margin-top: 12px;
}

.academy-left__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.academy-left__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-pink);
    border-radius: 50%;
}

.academy-left__button {
    margin-top: 24px;
}

.academy-right img {
    border-radius: 16px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ============================================
   BECOME TEAM SECTION
   ============================================ */
.become-team {
    background-color: #FFFFFF;
    color: var(--color-white);
    text-align: center;
}

.become-team__title {
    color: var(--color-white);
}

.become-team__text {
    max-width: 900px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

/* ============================================
   FEEDBACK SECTION
   ============================================ */
.feedback {
    width: 100%;
    background-color: #000000;
    color: var(--color-white);
}

.feedback-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.feedback-content__title {
    color: var(--color-white);
}

.feedback-content__text {
    margin-bottom: 16px;
    opacity: 0.9;
}

.feedback-content__img {
    margin-top: 32px;
}

.feedback-content__img img {
    border-radius: 16px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.feedback-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
}

.feedback-form__input,
.feedback-form__area {
    display: block;
    margin-bottom: 16px;
}

.feedback-form__input input,
.feedback-form__area textarea {
    width: 100%;
    padding: 14px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.feedback-form__input input::placeholder,
.feedback-form__area textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.feedback-form__input input:focus,
.feedback-form__area textarea:focus {
    outline: none;
    border-color: var(--color-pink);
}

.feedback-form__area textarea {
    resize: vertical;
    min-height: 120px;
}

.feedback-form__button {
    width: 100%;
    margin-top: 16px;
}

.feedback-success {
    margin-top: 16px;
    padding: 16px;
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    border-radius: 8px;
    text-align: center;
    color: #4CAF50;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    width: 100%;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 94px 0;
}

.footer-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-socials__link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials__link img {
    width: 24px;
    height: 24px;
}

.footer-left__copyright,
.footer-right__copyright {
    font-size: 12px;
    opacity: 0.6;
}

.footer-menu {
    display: flex;
    justify-content: center;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    justify-content: center;
}

.footer-menu a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 1;
    color: var(--color-pink);
}

.footer-right {
    text-align: right;
}

.footer-right__img {
    margin-top: 24px;
}

.footer-right__img img {
    height: 60px;
    margin-left: auto;
}

/* ============================================
   SLIDER CONTROLS
   ============================================ */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.slider-controls__prev,
.slider-controls__next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-controls__prev:hover,
.slider-controls__next:hover {
    background-color: var(--color-pink);
}

.slider-controls-black .slider-controls__prev,
.slider-controls-black .slider-controls__next {
    background-color: rgba(0, 0, 0, 0.1);
}

.slider-controls__current,
.slider-controls__total {
    font-size: 14px;
    font-weight: 600;
}

.slider-controls__progress {
    width: 100px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.slider-controls-black .slider-controls__progress {
    background-color: rgba(0, 0, 0, 0.2);
}

.slider-controls__progress span {
    display: block;
    height: 100%;
    background-color: var(--color-pink);
    transition: width 0.3s ease;
}

/* ============================================
   POPUP
   ============================================ */
.popup-success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-success-message.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-success-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.btn__close-popup {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
}

.btn__close-popup::before,
.btn__close-popup::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--color-gray);
}

.btn__close-popup::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn__close-popup::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .section-title {
        font-size: 36px;
    }

    .hero__title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .company-content,
    .about-row,
    .assortment-row,
    .travel-row,
    .founder-row,
    .academy-row,
    .feedback-row {
        grid-template-columns: 1fr;
    }

    .company-right {
        grid-template-columns: 1fr;
    }

    .reviews-content {
        grid-template-columns: 1fr;
    }

    .reviews-left,
    .reviews-right {
        display: none;
    }

    .reviews-slider {
        display: block;
    }

    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-right__img img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero-bottom {
        flex-direction: column;
    }

    .hero-bottom .button-pink {
        text-align: center;
    }

    .hero-socials {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 100;
    }

    .news-content {
        grid-template-columns: 1fr;
    }

    .team-tabs {
        flex-direction: column;
    }

    .team-tabs__button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .hero__title {
        font-size: 28px;
    }

    .button-pink {
        padding: 12px 24px;
        font-size: 12px;
    }

    .founder-left__img {
        display: block;
    }

    .founder-right {
        display: none;
    }

    .founder-left__img img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
}

/* ============================================
   Contacts Page Styles
   ============================================ */

.contacts-page {
    position: relative;
}

.contacts-page .feedback {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contacts-page .feedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.contacts-page .feedback > .container {
    position: relative;
    z-index: 1;
}

.main:has(.contacts-page) ~ .footer {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.main:has(.contacts-page) ~ .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.main:has(.contacts-page) ~ .footer > .container {
    position: relative;
    z-index: 1;
}
