/* 
 * Daybell & Choo Opticians
 * Luxury Website Styles
 */

/* Base Styles
------------------------------------------*/
:root {
    --primary-black: #000000;
    --secondary-black: #0c0c0c;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #cccccc;
    --gold: #c9b16d;
    --gold-light: #d4c18e;
    --white: #ffffff;
    
    --heading-font: 'Cormorant', serif;
    --body-font: 'Montserrat', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    
    --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(--body-font);
    color: var(--white);
    background-color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 300;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-md);
    font-weight: 300;
}

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

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

/* Buttons
------------------------------------------*/
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-medium);
}

.cta-button:hover {
    background-color: var(--gold);
    color: var(--primary-black);
}

.link-button {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all var(--transition-medium);
}

.link-button::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width var(--transition-medium);
}

.link-button:hover {
    color: var(--gold-light);
}

.link-button:hover::after {
    width: 100%;
}

/* Header
------------------------------------------*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--primary-black);
    border-bottom: 1px solid rgba(201, 177, 109, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color var(--transition-medium);
}

.logo {
    text-align: left;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.logo p {
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 0;
    color: var(--gold);
}

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

nav a {
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition-medium);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width var(--transition-medium);
}

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

nav a.active {
    color: var(--gold);
}

/* Hero Section
------------------------------------------*/
.hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 70px;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/luxury-optician-store.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translateZ(-1px) scale(1.5);
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-content p {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-content .subtext {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    color: var(--secondary-black);
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
}

/* About Section
------------------------------------------*/
.about-section {
    background-color: var(--primary-black);
    text-align: center;
    padding: var(--space-xl) 0;
}

.about-section .container {
    max-width: 800px;
}

.about-section p {
    color: var(--light-gray);
}

/* Services Section
------------------------------------------*/
.services-section {
    background-color: var(--primary-black);
    padding: var(--space-xl) 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.service-card {
    background-color: var(--dark-gray);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    margin-bottom: var(--space-sm);
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
    text-transform: lowercase;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

/* Brands Section
------------------------------------------*/
.brands-section {
    padding: var(--space-xl) 0;
    background-color: var(--secondary-black);
}

.brands-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.brands-text {
    flex: 1;
    max-width: 550px;
    padding-right: var(--space-lg);
}

.brands-text h2 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.brands-text p {
    color: var(--light-gray);
    margin-bottom: var(--space-sm);
}

.brands-logos {
    flex: 1;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100px;
    transition: all var(--transition-medium);
}

.brand-logo:hover {
    border-color: var(--gold);
}

.brand-logo img {
    max-width: 80%;
    max-height: 60px;
    filter: brightness(0.8);
    transition: filter var(--transition-medium);
}

.brand-logo:hover img {
    filter: brightness(1);
}

/* Styling Consultation Section
------------------------------------------*/
.styling-section {
    padding: var(--space-xl) 0;
    background-color: var(--primary-black);
    position: relative;
}

.styling-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 50%;
}

.styling-icon {
    margin-bottom: var(--space-sm);
}

.styling-icon img {
    width: 70px;
    height: auto;
}

.styling-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.styling-text p {
    color: var(--light-gray);
    margin-bottom: var(--space-md);
}

/* Easy Eyecare Section
------------------------------------------*/
.easy-eyecare-section {
    padding: var(--space-xl) 0;
    background-color: var(--secondary-black);
    background-image: url('../images/optician-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.eyecare-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.eyecare-text {
    max-width: 50%;
    text-align: right;
}

.eyecare-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.eyecare-text p {
    color: var(--light-gray);
    margin-bottom: var(--space-md);
}

/* Footer
------------------------------------------*/
footer {
    background-color: var(--primary-black);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    display: flex;
    margin-bottom: var(--space-xl);
}

.footer-logo {
    margin-right: var(--space-xl);
}

.footer-logo img {
    width: 50px;
    height: auto;
}

.opening-hours h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.opening-hours ul li {
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: var(--light-gray);
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.footer-about, .footer-contact {
    flex: 1;
    max-width: 45%;
}

.footer-about h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.footer-about p, .footer-contact p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: var(--space-xs);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--medium-gray);
    border-radius: 50%;
    transition: all var(--transition-medium);
}

.footer-social a i {
    color: var(--light-gray);
    transition: color var(--transition-medium);
}

.footer-social a:hover {
    border-color: var(--gold);
}

.footer-social a:hover i {
    color: var(--gold);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--medium-gray);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Page Banner
------------------------------------------*/
.page-banner {
    padding: 120px 0 50px;
    background-color: var(--secondary-black);
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.page-banner p {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Eye Test Overview
------------------------------------------*/
.eye-test-overview {
    padding: var(--space-xl) 0;
    background-color: var(--primary-black);
}

.overview-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.overview-text p {
    color: var(--light-gray);
    margin-bottom: var(--space-md);
}

.overview-image {
    flex: 1;
    overflow: hidden;
    border: 1px solid rgba(201, 177, 109, 0.2);
}

.overview-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

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

/* Journey Timeline
------------------------------------------*/
.journey-section {
    padding: var(--space-xl) 0;
    background-color: var(--secondary-black);
}

.journey-section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 1px;
    background-color: var(--gold);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: var(--space-lg);
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-black);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--gold);
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.timeline-content p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Technology Section
------------------------------------------*/
.technology-section {
    padding: var(--space-xl) 0;
    background-color: var(--primary-black);
}

.technology-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.technology-text {
    flex: 1;
}

.technology-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.technology-text p {
    color: var(--light-gray);
    margin-bottom: var(--space-md);
}

.technology-image {
    flex: 1;
    overflow: hidden;
    border: 1px solid rgba(201, 177, 109, 0.2);
}

.technology-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

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

/* FAQ Section
------------------------------------------*/
.faq-section {
    padding: var(--space-xl) 0;
    background-color: var(--secondary-black);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.faq-item {
    background-color: var(--dark-gray);
    padding: var(--space-md);
    border: 1px solid rgba(201, 177, 109, 0.1);
    transition: transform var(--transition-medium);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 177, 109, 0.3);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--gold);
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

/* CTA Section
------------------------------------------*/
.cta-section {
    padding: var(--space-xl) 0;
    background-color: var(--primary-black);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: var(--light-gray);
    margin-bottom: var(--space-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
}

/* Interactive Services
------------------------------------------*/
.interactive-services {
    padding: var(--space-xl) 0;
    background-color: var(--primary-black);
}

.interactive-services h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.interactive-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.int-service-card {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform var(--transition-medium);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    transition: background var(--transition-medium);
}

.int-service-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    color: var(--white);
    z-index: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    transition: margin-bottom var(--transition-medium);
}

.card-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-medium), opacity var(--transition-medium);
}

.int-service-card:hover .card-description {
    max-height: 200px;
    opacity: 1;
}

.int-service-card:hover .card-content h3 {
    margin-bottom: var(--space-md);
}

.card-description p {
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    line-height: 1.6;
}

.card-link {
    color: var(--gold);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width var(--transition-medium);
}

.card-link:hover {
    color: var(--light-gold);
}

.card-link:hover::after {
    width: 100%;
}

/* Featured Brands
------------------------------------------*/
.featured-brands {
    padding: var(--space-xl) 0;
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.featured-brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.featured-brands .container {
    position: relative;
    z-index: 2;
}

.brands-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/brandsofglasses.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: translateZ(-1px) scale(1.5);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.brand-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: var(--space-md);
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.brand-logo {
    height: 60px;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: brightness(0) invert(1);
}

.brand-item h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--gold);
}

.brand-item p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.brands-cta {
    margin-top: var(--space-xl);
}

/* Amenities
------------------------------------------*/
.amenities-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.amenity-item {
    background-color: var(--dark-gray);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.amenity-icon {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-icon i {
    font-size: 2.5rem;
    color: var(--off-white);
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon i {
    color: var(--gold);
    transform: scale(1.2);
}

.amenity-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.amenity-item p {
    font-size: 0.9rem;
    color: var(--off-white);
    opacity: 0.8;
}

/* Interactive Service Cards
------------------------------------------*/
.service-cards {
    padding: 80px 0;
    background-color: var(--medium-gray);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.interactive-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.interactive-card:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.interactive-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.card-title {
    font-size: 1.5rem;
    color: var(--pure-white);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.card-description {
    font-size: 0.9rem;
    color: var(--off-white);
    margin-bottom: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-bottom 0.5s ease;
}

.interactive-card:hover .card-description {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.interactive-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.card-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.card-link:hover {
    color: var(--gold-light);
}

.card-link:hover::after {
    transform: translateX(5px);
}

/* Responsive styles for new sections */
@media (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .amenities-grid, .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .interactive-card {
        height: 300px;
    }
    
    .card-description {
        max-height: 100px;
        opacity: 1;
        margin-bottom: 20px;
    }
    
    .card-link {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles
------------------------------------------*/
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-content {
        flex-direction: column;
    }
    
    .brands-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: var(--space-lg);
    }
    
    .styling-content, .eyecare-text {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: var(--space-sm) 5%;
    }
    
    .logo {
        margin-bottom: var(--space-sm);
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .hero {
        height: auto;
        padding: var(--space-xl) 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .text-box {
        margin-bottom: var(--space-lg);
    }
    
    .text-box h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .styling-content, .eyecare-text {
        max-width: 100%;
    }
    
    .footer-info, .footer-nav {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
    
    .footer-about, .footer-contact {
        max-width: 100%;
        margin-bottom: var(--space-md);
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Additional Responsive Styles
------------------------------------------*/
@media (max-width: 1024px) {
    .overview-content, .technology-content {
        flex-direction: column;
    }
    
    .overview-image, .technology-image {
        width: 100%;
        margin-top: var(--space-md);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .journey-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .interactive-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .interactive-cards {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .int-service-card {
        height: 350px;
    }
    
    .card-description {
        max-height: none;
        opacity: 1;
    }
    
    .card-content h3 {
        margin-bottom: var(--space-md);
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Add new styles for the homepage features */

/* Service Boxes */
.service-boxes {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-box {
    background-color: var(--dark-gray);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-box:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.service-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-box p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--off-white);
    opacity: 0.8;
}

.service-link {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.service-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: var(--gold-light);
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Before & After Gallery */
.before-after-gallery {
    padding: 80px 0;
    background-color: var(--medium-gray);
}

.slider-container {
    margin-top: 40px;
    position: relative;
}

.before-after-slider {
    width: 100%;
    overflow: hidden;
}

.slide {
    width: 100%;
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.before-image {
    left: 0;
    z-index: 1;
}

.after-image {
    right: 0;
    z-index: 2;
    width: 50%;
    overflow: hidden;
}

.before-image img, .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image img {
    position: absolute;
    right: 0;
    top: 0;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--gold);
    cursor: ew-resize;
    z-index: 3;
    transform: translateX(-50%);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-black);
    font-size: 18px;
    font-weight: bold;
}

.label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--pure-white);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 4px;
}

.before-image .label {
    left: 20px;
}

.after-image .label {
    right: 20px;
}

.slide-caption {
    margin-top: 20px;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.slide-caption p {
    font-size: 1rem;
    color: var(--off-white);
    max-width: 600px;
    margin: 0 auto;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.slider-prev, .slider-next {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--gold);
    color: var(--primary-black);
}

.slider-dots {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Eyecare Plan Boxes */
.eyecare-plans {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.plan-box {
    background-color: var(--dark-gray);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.plan-box.featured {
    background-color: var(--medium-gray);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.plan-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.plan-icon {
    margin-bottom: 20px;
}

.plan-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.plan-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--gold);
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--off-white);
    position: relative;
    padding-left: 25px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: var(--medium-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--dark-gray);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.reviewer-initial {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 15px;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

.rating {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--off-white);
    font-style: italic;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

/* Interactive Tools Section */
.interactive-tools {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 80px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tools-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tool-card {
    background-color: var(--secondary-black);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(201, 177, 109, 0.3);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.tool-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.tool-card p:first-of-type {
    font-family: var(--heading-font);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tool-card p:nth-of-type(2) {
    color: var(--light-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.tool-button {
    display: inline-block;
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tool-button:hover {
    background-color: var(--gold);
    color: var(--primary-black);
}

@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog/Insights Section */
.eyecare-insights {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 25px;
}

.blog-date {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--gold);
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--off-white);
    margin-bottom: 20px;
}

.blog-link {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

.blog-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.blog-link:hover {
    color: var(--gold-light);
}

.blog-link:hover::after {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

/* Find Us/Location Section */
.find-us {
    padding: 80px 0;
    background-color: var(--medium-gray);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.interactive-map {
    width: 100%;
    height: 100%;
}

.interactive-map iframe {
    display: block;
    border-radius: 8px;
}

.location-details {
    background-color: var(--dark-gray);
    border-radius: 8px;
    padding: 40px;
}

.location-info h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
    margin-top: 30px;
}

.location-info h3:first-child {
    margin-top: 0;
}

.location-info p {
    font-size: 0.95rem;
    color: var(--off-white);
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
    margin-bottom: 30px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    font-weight: 500;
    color: var(--gold);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--gold);
    color: var(--primary-black);
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button i {
    margin-right: 8px;
}

.contact-button:hover {
    background-color: var(--gold-light);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/glasses-icon-gold.svg') no-repeat;
    background-position: right -100px center;
    background-size: 300px;
    opacity: 0.05;
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 20px;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    width: 100%;
}

.form-group {
    display: flex;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    background-color: var(--medium-gray);
    color: var(--off-white);
}

.form-group input::placeholder {
    color: var(--light-gray);
}

.form-group button {
    padding: 15px 30px;
    border: none;
    border-radius: 0 4px 4px 0;
    background-color: var(--gold);
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background-color: var(--gold-light);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.form-consent input {
    margin-top: 5px;
    margin-right: 10px;
}

.form-consent label {
    font-size: 0.8rem;
    color: var(--light-gray);
    line-height: 1.4;
}

/* Updated Footer */
footer {
    background-color: var(--dark-gray);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo h3 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--medium-gray);
    border-radius: 50%;
    color: var(--off-white);
    transition: all 0.3s ease;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-column h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links-column ul {
    list-style: none;
}

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

.footer-links-column ul li a {
    font-size: 0.9rem;
    color: var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links-column ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--gold);
    padding-left: 20px;
}

.footer-links-column ul li a:hover::before {
    transform: translateX(5px);
}

.footer-bottom {
    background-color: var(--primary-black);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid, .plans-grid, .reviews-grid, .blog-grid, .location-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .plan-box.featured {
        transform: scale(1);
    }
    
    .plan-box.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .form-group button {
        border-radius: 4px;
    }
}

/* Specialty Service Sections */
.specialty-service {
    padding: 100px 0;
    background-color: var(--primary-black);
    color: var(--white);
}

.specialty-service:nth-child(even) {
    background-color: var(--secondary-black);
    color: var(--white);
}

.two-column-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.left-column,
.right-column {
    flex: 1;
}

.left-column {
    padding-right: 20px;
}

.right-column {
    padding-left: 20px;
}

.left-column h2, .right-column h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.left-column .section-intro, .right-column .section-intro {
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.left-column p, .right-column p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--light-gray);
}

.specialty-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.specialty-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.specialty-features li i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 1.1rem;
}

.specialty-features li span {
    color: var(--white);
}

.specialty-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 2px solid var(--gold);
}

.specialty-image:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .two-column-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .left-column,
    .right-column {
        width: 100%;
        padding: 0;
    }
    
    /* Always show image below text on mobile */
    .specialty-service:first-of-type .two-column-layout {
        display: flex;
        flex-direction: column;
    }
    
    .specialty-service:first-of-type .left-column {
        order: 1;
    }
    
    .specialty-service:first-of-type .right-column {
        order: 2;
    }
    
    .specialty-service:last-of-type .two-column-layout {
        display: flex;
        flex-direction: column;
    }
    
    .specialty-service:last-of-type .right-column {
        order: 1;
    }
    
    .specialty-service:last-of-type .left-column {
        order: 2;
    }
}

/* Page Banner Fullwidth */
.page-banner-fullwidth {
    position: relative;
    width: 100%;
    height: 50vh; /* Adjust height as needed */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff; /* White text */
    overflow: hidden;
}

.page-banner-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay - adjust opacity (last value) */
    z-index: 1;
}

.banner-overlay-content {
    position: relative; /* Ensure content is above the overlay */
    z-index: 2;
    padding: 20px;
    max-width: 800px; /* Limit content width */
}

.banner-overlay-content h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem; /* Larger font for banner */
    margin-bottom: 15px;
    color: #fff; /* Ensure heading is white */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Add text shadow for readability */
}

.banner-overlay-content p {
    font-size: 1.3rem;
    color: #eee; /* Slightly off-white for subtext */
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Add text shadow */
}
