/* Base Styles */
:root {
    --primary-color: #8c1c13;
    --primary-light: #b23a31;
    --primary-dark: #5e0f0a;
    --secondary-color: #e6b325;
    --secondary-light: #f9d75e;
    --secondary-dark: #c99209;
    --accent-color: #4a1942;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --background-light: #ffffff;
    --background-dark: #161616;
    --background-medium: #2d2d2d;
    --grey-light: #e9ecef;
    --grey-medium: #adb5bd;
    --grey-dark: #495057;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Raleway', sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

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

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary-color);
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-size: 1rem;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--text-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn i {
    margin-right: 8px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(22, 22, 22, 0.9);
    padding: 15px 0;
    transition: all var(--transition-speed) ease;
}

header.scrolled {
    background-color: rgba(22, 22, 22, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

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

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

.logo img {
    height: 60px;
    transition: height var(--transition-speed) ease;
}

header.scrolled .logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    position: absolute;
    left: 0;
    transition: all var(--transition-speed) ease;
}

.mobile-menu-btn span:first-child {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span:last-child {
    bottom: 0;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg);
    top: 50%;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('https://images.pexels.com/photos/274192/pexels-photo-274192.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--grey-light);
}

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

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    display: flex;
    align-items: center;
    margin-top: 90px;
}

.loyalty-hero {
    background-image: url('https://images.pexels.com/photos/1269043/pexels-photo-1269043.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.terms-hero {
    background-image: url('https://images.pexels.com/photos/5486851/pexels-photo-5486851.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.privacy-hero {
    background-image: url('https://images.pexels.com/photos/6476260/pexels-photo-6476260.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.contact-hero {
    background-image: url('https://images.pexels.com/photos/1089930/pexels-photo-1089930.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.about-hero {
    background-image: url('https://images.pexels.com/photos/1267324/pexels-photo-1267324.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.page-hero-content h1 span {
    color: var(--secondary-color);
}

.page-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--grey-light);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--grey-light);
    transition: transform var(--transition-speed) ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--grey-light);
}

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

.service-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--text-light);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 0;
    color: var(--grey-dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.testimonials-section .section-header h2 {
    color: var(--text-light);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: flex;
    justify-content: center;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 0 15px;
}

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

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-info h4 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 15px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-speed) ease;
}

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

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-image: url('https://images.pexels.com/photos/941861/pexels-photo-941861.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--text-light);
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 4rem 0 0;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-logo p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links h3, .footer-contact h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--grey-medium);
    transition: color var(--transition-speed) ease;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--grey-medium);
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--grey-medium);
}

/* Loyalty Program Page */
.loyalty-info {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.loyalty-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.loyalty-text {
    flex: 1;
}

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

.loyalty-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.rewards-section {
    padding: 6rem 0;
    background-color: var(--grey-light);
}

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

.reward-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease;
}

.reward-card:hover {
    transform: translateY(-10px);
}

.reward-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reward-icon i {
    font-size: 1.75rem;
    color: var(--text-light);
}

.tiers-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.tiers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.tier {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    transition: transform var(--transition-speed) ease;
}

.tier:hover {
    transform: translateY(-10px);
}

.tier.featured {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
}

.tier.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.tier-header {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

.tier-header.bronze {
    background-color: #cd7f32;
}

.tier-header.silver {
    background-color: #c0c0c0;
}

.tier-header.gold {
    background-color: #ffd700;
    color: var(--text-dark);
}

.tier-header.platinum {
    background-color: #e5e4e2;
    color: var(--text-dark);
}

.tier-header h3 {
    margin-bottom: 0;
    color: inherit;
    font-size: 1.75rem;
}

.tier-body {
    padding: 2rem;
}

.tier-body ul {
    margin-bottom: 1.5rem;
}

.tier-body li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.tier-body li i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 5px;
}

.tier-requirement {
    text-align: center;
    font-style: italic;
    color: var(--grey-dark);
    margin-bottom: 0;
}

.loyalty-cta {
    background-image: url('https://images.pexels.com/photos/602750/pexels-photo-602750.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

/* Terms & Privacy Pages */
.terms-content, .privacy-content {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.legal-section ul li strong {
    color: var(--primary-color);
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--grey-light);
    font-style: italic;
    color: var(--grey-dark);
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info, .contact-form-container {
    flex: 1;
    min-width: 300px;
}

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

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

.info-icon i {
    font-size: 1.25rem;
    color: var(--text-light);
}

.info-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-content p {
    margin-bottom: 0.25rem;
    color: var(--grey-dark);
}

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

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

.contact-form {
    background-color: var(--grey-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--grey-medium);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

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

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

.checkbox-group label {
    margin-bottom: 0;
}

.map-section {
    padding: 6rem 0;
    background-color: var(--grey-light);
}

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

.contact-cta {
    background-image: url('https://images.pexels.com/photos/8957026/pexels-photo-8957026.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

/* About Page */
.story-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.story-text {
    flex: 1;
}

.mission-section {
    padding: 6rem 0;
    background-color: var(--grey-light);
}

.mission-content {
    display: flex;
    gap: 30px;
    margin-bottom: 4rem;
}

.mission-block, .vision-block {
    flex: 1;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.value-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--text-light);
}

.team-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.team-member {
    background-color: var(--grey-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 0.25rem;
}

.member-info span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.about-testimonials {
    background-color: var(--primary-dark);
}

.about-cta {
    background-image: url('https://images.pexels.com/photos/3566236/pexels-photo-3566236.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.25rem;
    }
    
    .about-content, 
    .loyalty-content, 
    .story-content {
        flex-direction: column;
    }
    
    .about-image, 
    .loyalty-image, 
    .story-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--background-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-speed) ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .tier.featured {
        transform: scale(1);
    }
    
    .tier.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .page-hero-content h1 {
        font-size: 2.25rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}