/* 
Packoryon CrossFit Studio Style Sheet
Colors:
- Background: Black (#000000)
- Accent: Red (#E50914)
- Secondary: Steel (#333333)
- Text: White (#FFFFFF)
Fonts:
- Barlow Condensed (Headings)
- Lato (Body)
*/

/* =================== 
   Base Styles
=================== */
:root {
    --color-black: #000000;
    --color-red: #E50914;
    --color-steel: #333333;
    --color-white: #FFFFFF;
    --color-gray: #CCCCCC;
    --color-dark-gray: #1A1A1A;
    
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-red);
}

ul {
    list-style: none;
}

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

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

section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--color-dark-gray);
}

.section__title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: block;
    padding-bottom: 15px;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-red);
}

.section__subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -40px;
    margin-bottom: 40px;
    color: var(--color-gray);
}

/* =================== 
   Buttons
=================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn--primary {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: #c9080f;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn--secondary {
    background-color: var(--color-steel);
    color: var(--color-white);
}

.btn--secondary:hover {
    background-color: #444444;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* =================== 
   Header & Navigation
=================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.95);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 200px;
    transition: var(--transition);
}

.header.scrolled .logo {
    width: 180px;
}

.nav__menu {
    display: flex;
}

.nav__menu li {
    margin-left: 25px;
}

.nav__menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
}

.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: var(--transition);
}

.nav__menu a:hover::after,
.nav__menu a:focus::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* =================== 
   Hero Section
=================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero__title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__slogan {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.hero__cta {
    display: flex;
    gap: 20px;
}

.hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-black) 0%, transparent 100%);
    z-index: 1;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* =================== 
   WOD Section
=================== */
.wod {
    background-color: var(--color-steel);
}

.wod__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.wod__info {
    background-color: var(--color-dark-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--color-red);
    box-shadow: var(--box-shadow);
}

.wod__date {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-red);
    margin-bottom: 10px;
}

.wod__name {
    font-size: 2rem;
    margin-bottom: 20px;
}

.wod__type {
    font-weight: 700;
    margin-bottom: 10px;
}

.wod__list {
    margin-bottom: 20px;
}

.wod__list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.wod__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-red);
}

.wod__time {
    margin-bottom: 20px;
    font-weight: 700;
}

.wod__image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.wod__image img {
    transition: var(--transition);
}

.wod__image:hover img {
    transform: scale(1.05);
}

/* =================== 
   Coaches Section
=================== */
.coaches__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.coach {
    background-color: var(--color-steel);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.coach:hover {
    transform: translateY(-5px);
}

.coach__image {
    height: 300px;
    overflow: hidden;
}

.coach__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.coach:hover .coach__image img {
    transform: scale(1.05);
}

.coach__name {
    padding: 20px 20px 0;
    margin-bottom: 5px;
}

.coach__speciality {
    color: var(--color-red);
    font-weight: 700;
    padding: 0 20px;
    margin-bottom: 10px;
}

.coach__description {
    padding: 0 20px 20px;
    font-size: 0.95rem;
}

/* =================== 
   Programs Section
=================== */
.programs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.program {
    background-color: var(--color-steel);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.program:hover {
    transform: translateY(-5px);
    background-color: #3e3e3e;
}

.program__icon {
    color: var(--color-red);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.program__icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-red);
}

.program__title {
    text-align: center;
    margin-bottom: 15px;
}

.program__description {
    margin-bottom: 20px;
    flex-grow: 1;
}

.program__details {
    margin-bottom: 20px;
}

.program__details li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.program__details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-red);
}

.program .btn {
    align-self: center;
}

/* =================== 
   PR Wall Section
=================== */
.pr-wall {
    background-color: var(--color-dark-gray);
}

.pr-wall__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.pr-card {
    background-color: var(--color-steel);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 4px solid var(--color-red);
}

.pr-card:hover {
    transform: translateY(-5px);
    background-color: #3e3e3e;
}

.pr-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pr-card__achievement {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 8px;
}

.pr-card__date {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.pr-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pr-filters__btn {
    padding: 8px 15px;
    background-color: var(--color-steel);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
}

.pr-filters__btn:hover,
.pr-filters__btn.active {
    background-color: var(--color-red);
}

/* =================== 
   Schedule Section
=================== */
.schedule__nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule__nav-btn {
    padding: 10px 20px;
    background-color: var(--color-steel);
    color: var(--color-white);
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.schedule__nav-btn:hover,
.schedule__nav-btn.active {
    background-color: var(--color-red);
}

.schedule__content {
    display: none;
}

.schedule__content.active {
    display: block;
}

.schedule__item {
    display: grid;
    grid-template-columns: 150px 1fr 100px 80px;
    align-items: center;
    padding: 15px;
    background-color: var(--color-steel);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    transition: var(--transition);
}

.schedule__item:hover {
    background-color: #3e3e3e;
}

.schedule__time {
    font-weight: 700;
}

.schedule__class {
    font-weight: 700;
    font-family: var(--font-heading);
}

.schedule__coach {
    color: var(--color-gray);
}

.schedule__book {
    padding: 5px 10px;
    background-color: var(--color-red);
    color: var(--color-white);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
}

.schedule__book:hover {
    background-color: #c9080f;
    color: var(--color-white);
}

/* =================== 
   Community Section
=================== */
.community__slider {
    position: relative;
    overflow: hidden;
}

.community__slide {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
    display: none;
}

.community__slide:first-child {
    display: grid;
}

.community__image {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.community__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community__content {
    background-color: var(--color-steel);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.community__content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(229, 9, 20, 0.2);
}

.community__name {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.community__story {
    margin-bottom: 20px;
    font-style: italic;
}

.community__achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.community__achievements span {
    background-color: var(--color-dark-gray);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
}

.community__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.community__arrow:hover {
    background-color: var(--color-red);
}

.community__arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
}

.community__arrow--prev {
    left: 10px;
}

.community__arrow--next {
    right: 10px;
}

/* =================== 
   Shop Section
=================== */
.shop__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.shop__item {
    background-color: var(--color-steel);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.shop__item:hover {
    transform: translateY(-5px);
}

.shop__image {
    height: 250px;
    overflow: hidden;
}

.shop__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.shop__item:hover .shop__image img {
    transform: scale(1.05);
}

.shop__title {
    padding: 20px 20px 0;
    text-align: center;
    margin-bottom: 5px;
}

.shop__price {
    text-align: center;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 20px;
}

.shop__item .btn {
    display: block;
    margin: 0 20px 20px;
}

/* =================== 
   Contact Section
=================== */
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact__info {
    background-color: var(--color-steel);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact__detail svg {
    margin-right: 15px;
    flex-shrink: 0;
    stroke: var(--color-red);
}

.contact__detail h3 {
    margin-bottom: 5px;
}

.contact__detail a {
    color: var(--color-white);
    transition: var(--transition);
}

.contact__detail a:hover {
    color: var(--color-red);
}

.contact__hours {
    margin-top: 30px;
}

.contact__hours h3 {
    margin-bottom: 15px;
}

.contact__hours ul li {
    margin-bottom: 8px;
}

.contact__hours ul li span {
    font-weight: 700;
    margin-right: 5px;
}

.contact__form-container {
    background-color: var(--color-steel);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--color-dark-gray);
    border: 1px solid #444;
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form__group textarea {
    min-height: 150px;
    resize: vertical;
}

.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--color-red);
    outline: none;
}

.form__group--checkbox {
    display: flex;
    align-items: center;
}

.form__group--checkbox input {
    width: auto;
    margin-right: 10px;
}

.form__group--checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.contact__form .btn {
    width: 100%;
}

/* =================== 
   Footer
=================== */
.footer {
    background-color: var(--color-steel);
    padding: 60px 0 20px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer__slogan {
    font-style: italic;
    color: var(--color-gray);
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer__nav-column h3 {
    margin-bottom: 20px;
    color: var(--color-red);
}

.footer__nav-column ul li {
    margin-bottom: 10px;
}

.footer__nav-column ul li a {
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer__nav-column ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-red);
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =================== 
   Success Page
=================== */
.success {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0;
}

.success__content {
    background-color: var(--color-steel);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success__icon {
    margin-bottom: 30px;
    color: var(--color-red);
}

.success__icon svg {
    stroke: var(--color-red);
    width: 64px;
    height: 64px;
}

.success__title {
    margin-bottom: 20px;
}

.success__message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.success__details {
    margin-bottom: 30px;
    text-align: left;
    padding: 20px;
    background-color: var(--color-dark-gray);
    border-radius: var(--border-radius);
}

.success__details h2 {
    margin-bottom: 15px;
}

.success__details ul {
    padding-left: 20px;
}

.success__details ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.success__details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-red);
}

.success__cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =================== 
   Legal Pages
=================== */
.legal {
    padding: 150px 0 80px;
}

.legal__content {
    background-color: var(--color-steel);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.legal__title {
    margin-bottom: 10px;
}

.legal__date {
    margin-bottom: 40px;
    color: var(--color-gray);
    font-style: italic;
}

.legal__section {
    margin-bottom: 40px;
}

.legal__section h2 {
    margin-bottom: 20px;
    color: var(--color-red);
}

.legal__section h3 {
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal__section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal__section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.legal__section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-red);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cookie-table th,
.cookie-table td {
    padding: 10px;
    border: 1px solid #444;
    text-align: left;
}

.cookie-table th {
    background-color: var(--color-dark-gray);
}

.cookie-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.1);
}

/* =================== 
   Back to Top Button
=================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #c9080f;
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

/* =================== 
   Responsive Styles
=================== */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero__title {
        font-size: 3.5rem;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
    }
    
    .community__slide {
        grid-template-columns: 1fr;
    }
    
    .community__image {
        max-height: 300px;
    }
    
    .wod__content {
        grid-template-columns: 1fr;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
    }
    
    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
        align-items: flex-start;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__content {
        max-width: 100%;
        z-index: 3;
    }
    
    .hero__image {
        width: 100%;
        z-index: 1;
    }
    
    .hero__image::before {
        background: linear-gradient(to bottom, var(--color-black) 0%, rgba(0, 0, 0, 0.7) 50%, var(--color-black) 100%);
    }
    
    .nav__menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        background-color: var(--color-steel);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 20px;
        transition: var(--transition);
        transform: translateX(100%);
    }
    
    .nav__menu.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav__menu li {
        margin: 15px 0;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .schedule__item {
        grid-template-columns: 1fr 1fr;
        row-gap: 10px;
    }
    
    .schedule__coach {
        text-align: right;
    }
    
    .schedule__book {
        grid-column: span 2;
    }
    
    .footer__nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    .section__title {
        margin-bottom: 30px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__slogan {
        font-size: 1.3rem;
    }
    
    .hero__cta {
        flex-direction: column;
    }
    
    .hero__cta .btn {
        width: 100%;
    }
    
    .pr-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .pr-filters__btn {
        width: 100%;
    }
    
    .schedule__nav {
        flex-direction: column;
    }
    
    .schedule__nav-btn {
        width: 100%;
    }
    
    .success__cta {
        flex-direction: column;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}