/* 
 * ZIRETHONIX YOGA - STYLE SHEET
 * Design för yogawebbplats med fokus på stress och flexibilitet
 * --------------------------------------------------------------
 */

/* --------------------------------------------------------------
 * GRUNDLÄGGANDE STYLING
 * -------------------------------------------------------------- */
:root {
    /* Färgpalett */
    --color-bg-light: #f7f3ef;
    --color-bg-green: #bcd9c0;
    --color-bg-lavender: #d6ccff;
    --color-text: #333333;
    --color-accent-gold: #d2b48c;
    --color-accent-teal: #96c5c0;
    
    /* Typografi */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Skuggor */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.12);
    
    /* Rundade hörn */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typografi */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1.5em;
}

a {
    color: var(--color-accent-teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-gold);
}

/* Knappar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-medium);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-small);
    border: none;
}

.btn.primary {
    background-color: var(--color-accent-teal);
    color: white;
}

.btn.primary:hover {
    background-color: #7bacab;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn.secondary {
    background-color: var(--color-accent-gold);
    color: var(--color-text);
}

.btn.secondary:hover {
    background-color: #c0a47c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn.large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn.small {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn.full-width {
    width: 100%;
    display: block;
}

/* Sektionsrubriker */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.section-header.light h2,
.section-header.light p {
    color: white;
}

.section-header.light h2::after {
    background-color: white;
}

/* --------------------------------------------------------------
 * HEADER / NAVIGATION
 * -------------------------------------------------------------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
    background-color: transparent;
}

#header.scrolled {
    background-color: white;
    box-shadow: var(--shadow-small);
    padding: 10px 0;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    max-height: 50px;
    width: auto;
    transition: all var(--transition-medium);
}

#header.scrolled .logo img {
    max-height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    color: var(--color-text);
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-teal);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1010;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    left: 0;
    transition: all var(--transition-medium);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.cta-mobile {
    display: none;
}

/* Responsiv navigering */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 400px;
        height: 100vh;
        flex-direction: column;
        background-color: white;
        padding: 80px 40px;
        box-shadow: var(--shadow-large);
        transition: right var(--transition-medium);
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 12px 0;
    }
    
    .cta-desktop {
        display: none;
    }
    
    .cta-mobile {
        display: block;
        margin-top: 20px;
    }
    
    .cta-mobile .btn {
        width: 100%;
    }
}

/* --------------------------------------------------------------
 * HERO SECTION
 * -------------------------------------------------------------- */
#hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* --------------------------------------------------------------
 * FÖRDELAR SECTION
 * -------------------------------------------------------------- */
#fordelar {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    position: relative;
}

.fordelar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.fordel-box {
    background-color: white;
    border-radius: var(--radius-large);
    padding: 40px 30px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: transform var(--transition-medium);
}

.fordel-box:hover {
    transform: translateY(-10px);
}

.fordel-icon {
    margin-bottom: 1.5rem;
}

.fordel-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.fordel-box p {
    color: #666;
    margin-bottom: 0;
}

/* --------------------------------------------------------------
 * PROGRAM SECTION
 * -------------------------------------------------------------- */
#program {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.program-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent-teal);
    background-image: linear-gradient(135deg, var(--color-accent-teal) 0%, #6c9ea0 100%);
    z-index: -1;
}

.program-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    margin: 0 -20px;
    padding: 20px;
    scroll-behavior: smooth;
}

.program-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.program-card {
    flex: 0 0 auto;
    width: calc(33.333% - 40px);
    margin: 0 20px;
    background-color: white;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    color: var(--color-text);
    scroll-snap-align: center;
}

.program-image {
    height: 240px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    margin-bottom: 1rem;
}

.program-details {
    list-style: none;
    margin: 1.5rem 0;
}

.program-details li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 24px;
}

.program-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent-teal);
    font-weight: bold;
}

.program-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.program-prev,
.program-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.program-prev:hover,
.program-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
    .program-card {
        width: calc(50% - 40px);
    }
}

@media (max-width: 767px) {
    .program-card {
        width: calc(100% - 40px);
    }
}

/* --------------------------------------------------------------
 * HUR DET FUNGERAR SECTION
 * -------------------------------------------------------------- */
#hur-det-fungerar {
    padding: 100px 0;
    background-color: #fff;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 2px;
    background-color: var(--color-bg-green);
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: var(--color-bg-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    font-weight: bold;
    z-index: 1;
    box-shadow: var(--shadow-medium);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-accent-teal);
}

.step-content p {
    color: #666;
}

@media (max-width: 767px) {
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .process-timeline::before {
        left: 25px;
    }
}

/* --------------------------------------------------------------
 * KUNDBERÄTTELSER SECTION
 * -------------------------------------------------------------- */
#kundberattelser {
    padding: 100px 0;
    background-color: var(--color-bg-lavender);
    background-image: linear-gradient(135deg, #e6e1ff 0%, var(--color-bg-lavender) 100%);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.testimonial {
    background-color: white;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 10px;
    flex-grow: 1;
}

.testimonial-content p::before {
    content: "";
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    opacity: 0.3;
    position: absolute;
    top: -30px;
    left: -10px;
}

.testimonial-author {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--color-accent-teal);
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

/* --------------------------------------------------------------
 * OM OSS SECTION
 * -------------------------------------------------------------- */
#om-oss {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.om-oss-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-light);
    z-index: -1;
    opacity: 0.5;
}

.om-oss-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.om-oss-image {
    position: relative;
}

.om-oss-image::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--color-accent-gold);
    z-index: -1;
    border-radius: var(--radius-medium);
}

.om-oss-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-large);
}

.om-oss-text h2 {
    color: var(--color-accent-teal);
    margin-bottom: 0.5rem;
}

.om-oss-text .subtitle {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-accent-gold);
    margin-bottom: 2rem;
}

.om-oss-text blockquote {
    border-left: 3px solid var(--color-accent-gold);
    padding-left: 20px;
    font-style: italic;
    margin: 2rem 0;
    color: #555;
}

@media (max-width: 991px) {
    .om-oss-content {
        grid-template-columns: 1fr;
    }
    
    .om-oss-image {
        margin-bottom: 40px;
    }
}

/* --------------------------------------------------------------
 * PRENUMERATION SECTION
 * -------------------------------------------------------------- */
#prenumeration {
    padding: 100px 0;
    background-color: white;
}

.subscription-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--color-bg-green);
    padding: 60px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
}

.subscription-box::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.subscription-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.subscription-box p {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.subscription-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscription-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius-medium) 0 0 var(--radius-medium);
    font-size: 1rem;
    outline: none;
}

.subscription-form button {
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
    padding: 0 30px;
}

.privacy-note {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    opacity: 0.9;
}

.privacy-note a {
    color: white;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .subscription-box {
        padding: 40px 20px;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .subscription-form input {
        border-radius: var(--radius-medium);
        margin-bottom: 10px;
    }
    
    .subscription-form button {
        border-radius: var(--radius-medium);
        width: 100%;
    }
}

/* --------------------------------------------------------------
 * BOOKING SECTION
 * -------------------------------------------------------------- */
#booking {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-small);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-teal);
    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;
}

.booking-image {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.booking-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .booking-image {
        order: -1;
    }
}

/* --------------------------------------------------------------
 * KONTAKT & KARTA SECTION
 * -------------------------------------------------------------- */
#kontakt {
    padding: 100px 0;
    background-color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--color-accent-teal);
}

.contact-text p {
    margin-bottom: 0;
    color: #666;
}

.contact-map {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.contact-map iframe {
    display: block;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------
 * FOOTER
 * -------------------------------------------------------------- */
footer {
    background-color: var(--color-text);
    color: white;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo img {
    margin-bottom: 15px;
    max-width: 180px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav h4,
.footer-legal h4,
.footer-subscribe h4 {
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 0.8rem;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-subscribe-form {
    display: flex;
    margin-top: 1.5rem;
}

.footer-subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-small) 0 0 var(--radius-small);
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe-form button {
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
    .footer-subscribe-form {
        flex-direction: column;
    }
    
    .footer-subscribe-form input {
        border-radius: var(--radius-small);
        margin-bottom: 10px;
    }
    
    .footer-subscribe-form button {
        border-radius: var(--radius-small);
        width: 100%;
    }
}

/* --------------------------------------------------------------
 * BACK TO TOP
 * -------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-accent-gold);
    transform: translateY(-5px);
}

/* --------------------------------------------------------------
 * RESPONSIVE MEDIA QUERIES
 * -------------------------------------------------------------- */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}

/* --------------------------------------------------------------
 * ANIMATION EFFECTS
 * -------------------------------------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Animate on scroll (AOS) overrides */
[data-aos] {
    pointer-events: auto !important;
}

html:not(.no-js) [data-aos=fade-up] {
    transform: translate3d(0, 30px, 0);
}

html:not(.no-js) [data-aos=fade-right] {
    transform: translate3d(-30px, 0, 0);
}

html:not(.no-js) [data-aos=fade-left] {
    transform: translate3d(30px, 0, 0);
}

html:not(.no-js) [data-aos=zoom-in] {
    transform: scale(0.9);
}