/* 
* Rhythm Masters Drum Lessons - Main Stylesheet
*/

/* Base Styles & Variables */
:root {
    --primary-color: #6c44fc;
    --secondary-color: #fa3856;
    --accent-color: #4cdefa;
    --text-color: #333333;
    --text-light: #6b7280;
    --background-color: #ffffff;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --container-width: 1200px;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

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

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

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
}

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

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
    padding: 1.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 5rem;
    border-radius: 50%;
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.7rem;
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
}

nav a:hover {
    color: var(--primary-color);
}

nav a.active {
    color: var(--primary-color);
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    background-color: var(--background-alt);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 70vh;
    min-height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    position: absolute;
    z-index: 10;
    left: 10%;
    width: 40%;
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.slide-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.slide-content p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-controls {
    position: absolute;
    bottom: 4rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    gap: 2rem;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
}

.prev-btn:hover, .next-btn:hover {
    background: white;
    color: var(--secondary-color);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Features Section */
.features {
    background-color: var(--background-alt);
    text-align: center;
}

.features h2 {
    margin-bottom: 5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 7rem;
    height: 7rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.feature-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Latest Posts Section */
.latest-posts h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.post-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 220px;
    overflow: hidden;
}

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

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover::after {
    transform: translateX(5px);
}

.view-all {
    margin-top: 4rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-alt);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 5rem;
}

.testimonial-slider {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    min-height: 30rem;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.testimonial.active {
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.testimonial-content {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-content p {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: normal;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 70rem;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    font-size: 3.6rem;
}

.cta p {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.cta .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: #f0f0f0;
    padding: 6rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    max-height: 6rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
}

.footer-logo p {
    color: #c5c5c5;
    font-size: 1.5rem;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-legal a {
    color: #c5c5c5;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #c5c5c5;
    margin-bottom: 1.5rem;
}

.footer-contact svg {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom p {
    color: #c5c5c5;
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 999;
    padding: 2rem;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.cookie-buttons .btn {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

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

.btn-settings {
    background-color: transparent;
    border: 1px solid white;
}

.btn-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-decline {
    background-color: transparent;
    border: 1px solid white;
}

.cookie-buttons a {
    color: white;
    text-decoration: underline;
    margin-left: 1rem;
}

/* Tooltip */
.tooltip {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1.4rem;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width: 300px;
    text-align: center;
}

/* Page Header (for subpages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 8rem 0;
}

.page-header h1 {
    color: white;
    font-size: 4.8rem;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 2rem;
    opacity: 0.9;
    max-width: 70rem;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-filter {
    margin-bottom: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.search-bar {
    display: flex;
    max-width: 40rem;
    width: 100%;
}

.search-bar input {
    flex-grow: 1;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1.6rem;
}

.search-bar button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background-color: var(--secondary-color);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.category-filter span {
    font-weight: 600;
}

.category-filter button {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.category-filter button.active,
.category-filter button:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 4rem;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.4rem;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-card-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-card-content p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.blog-card-content .read-more {
    margin-top: auto;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 6rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pagination a {
    background-color: white;
    color: var(--text-color);
    box-shadow: var(--box-shadow);
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: white;
}

.pagination span.current {
    background-color: var(--primary-color);
    color: white;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--background-alt);
}

.newsletter-content {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1.5rem;
}

.newsletter p {
    margin-bottom: 3rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    max-width: 55rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1.6rem;
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Blog Post Page */
.blog-post {
    padding: 8rem 0;
}

.post-header {
    max-width: 80rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-date, .post-author {
    display: flex;
    align-items: center;
}

.post-header h1 {
    font-size: 4.2rem;
    line-height: 1.2;
}

.post-featured-image {
    max-width: 100rem;
    margin: 0 auto 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    max-width: 80rem;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.7;
}

.post-content p,
.post-content ul,
.post-content ol {
    margin-bottom: 2.5rem;
}

.post-content h2 {
    font-size: 3rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-content h3 {
    font-size: 2.4rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    padding-left: 2.5rem;
}

.post-content ul li,
.post-content ol li {
    margin-bottom: 1rem;
}

.post-content ul {
    list-style-type: disc;
}

.post-content strong {
    font-weight: 700;
}

.post-image {
    margin: 3rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-caption {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.author-bio {
    margin-top: 6rem;
    padding: 3rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.author-bio img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio h3 {
    margin-bottom: 1rem;
}

.author-bio p {
    margin-bottom: 0;
    font-size: 1.6rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    max-width: 80rem;
    margin: 6rem auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.prev-post,
.next-post {
    max-width: 48%;
}

.prev-post a,
.next-post a {
    display: inline-block;
    padding: 1rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.prev-post a:hover,
.next-post a:hover {
    color: var(--secondary-color);
}

.related-posts {
    max-width: 100rem;
    margin: 6rem auto 0;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.related-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.related-post img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.related-post h4 {
    padding: 1.5rem 1.5rem 0;
    font-size: 1.8rem;
    line-height: 1.3;
}

.related-post a {
    display: inline-block;
    margin: 0.5rem 1.5rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* About Page Styles */
.about-story {
    padding-bottom: 6rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

.about-text h2 {
    margin-bottom: 2.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 1.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.philosophy-card {
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 7rem;
    height: 7rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.philosophy-card h3 {
    margin-bottom: 1.5rem;
}

.philosophy-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.our-team {
    background-color: var(--background-alt);
    text-align: center;
}

.our-team h2 {
    margin-bottom: 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 32rem;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding: 0 2rem;
}

.team-member p {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--background-alt);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.facilities {
    text-align: center;
}

.facilities h2 {
    margin-bottom: 5rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

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

.facility:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.facility img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

.facility h3 {
    margin-top: 2rem;
    padding: 0 2rem;
}

.facility p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-content {
    padding-bottom: 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info > p {
    margin-bottom: 4rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--background-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.8rem;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 1.4rem;
    font-style: italic;
}

.social-contact {
    margin-top: 4rem;
}

.social-contact h3 {
    margin-bottom: 1.5rem;
}

.contact-form-container {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.required {
    color: var(--secondary-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input {
    margin-top: 0.3rem;
}

.map-section {
    background-color: var(--background-alt);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 3rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 4rem;
}

.directions h3 {
    margin-bottom: 3rem;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
}

.direction-item {
    display: flex;
    gap: 1.5rem;
}

.direction-icon {
    width: 5rem;
    height: 5rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.direction-item h4 {
    margin-bottom: 1rem;
}

.direction-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.faq-section {
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: left;
}

.faq-item {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.thank-you-modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    max-width: 50rem;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.8rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
}

.modal-content p {
    margin-bottom: 3rem;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    html {
        font-size: 58%;
    }
    
    .slide-content {
        width: 50%;
    }
}

@media (max-width: 900px) {
    html {
        font-size: 56%;
    }
    
    .slide-content {
        width: 70%;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .slide-content {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        padding: 3rem;
    }
    
    .slide-content h1 {
        font-size: 3.6rem;
    }
    
    .footer-content {
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 3rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    .slider {
        height: 60vh;
        min-height: 500px;
    }
    
    .slide-content {
        width: 90%;
        padding: 2.5rem;
    }
    
    .slide-content h1 {
        font-size: 3.2rem;
    }
    
    .blog-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filter {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
        border-radius: var(--border-radius);
    }
    
    .newsletter-form .btn {
        margin-top: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-header h1 {
        font-size: 3.2rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .prev-post,
    .next-post {
        max-width: 100%;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
