/* =========================================
   Casa Viktoria - Luxury Kefalonia Accommodation
   Premium CSS Stylesheet
   ========================================= */

/* ===== CSS Variables - Luxury Color Palette ===== */
:root {
    /* Primary Colors - Elegant Earth & Sea Tones */
    --color-primary: #1a3a4a;          /* Deep Ocean Blue */
    --color-primary-light: #2d5a6e;    /* Lighter Ocean */
    --color-secondary: #c9a962;        /* Warm Gold */
    --color-secondary-light: #d4bc7d;  /* Light Gold */
    --color-accent: #8b6914;           /* Rich Gold Accent */

    /* Neutral Colors */
    --color-dark: #1a1a1a;
    --color-charcoal: #2d2d2d;
    --color-gray: #6b6b6b;
    --color-gray-light: #a0a0a0;
    --color-cream: #f8f5f0;
    --color-white: #ffffff;
    --color-off-white: #fdfcfa;

    /* Background Colors */
    --bg-light: #f9f7f4;
    --bg-section: #f5f2ed;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* ===== Base Styles ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-gray);
}

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

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

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

/* ===== Top Bar ===== */
.top-bar {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.top-bar-contact span {
    opacity: 0.9;
}

.top-bar-contact i {
    color: var(--color-secondary);
    margin-right: 6px;
}

.top-bar-social a {
    color: var(--color-white);
    opacity: 0.8;
    margin-left: 15px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.top-bar-social a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

/* ===== Navigation ===== */
.navbar {
    background: var(--color-white);
    padding: 20px 0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.navbar-brand .brand-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

/* Book Button */
.btn-book {
    background: var(--color-secondary);
    color: var(--color-white) !important;
    padding: 12px 28px !important;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px !important;
    transition: var(--transition-smooth);
}

.btn-book:hover {
    background: var(--color-accent);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 58, 74, 0.3) 0%,
        rgba(26, 58, 74, 0.5) 50%,
        rgba(26, 58, 74, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    font-style: italic;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

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

.btn-primary-custom {
    background: var(--color-secondary);
    color: var(--color-white);
    border: 2px solid var(--color-secondary);
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--color-secondary);
    transform: translateY(-3px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    display: block;
    font-size: 24px;
    margin-top: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding) 0;
}

.section-light {
    background: var(--bg-light);
}

.section-cream {
    background: var(--color-cream);
}

.section-dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-title span {
    font-style: italic;
    font-weight: 300;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

/* Decorative Line */
.decorative-line {
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
    margin: 25px auto;
}

/* ===== Features/Amenities Cards ===== */
.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: 0;
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--color-secondary);
    color: var(--color-white);
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    margin-bottom: 0;
}

/* ===== Image Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.wide {
    grid-column: span 2;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 58, 74, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* ===== Attractions / Info Cards ===== */
.attraction-card {
    background: var(--color-white);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.attraction-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.attraction-content {
    padding: 30px;
}

.attraction-content h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.attraction-content p {
    font-size: 15px;
    margin-bottom: 20px;
}

.attraction-distance {
    font-size: 13px;
    color: var(--color-secondary);
    font-weight: 500;
}

.attraction-distance i {
    margin-right: 5px;
}

/* ===== Booking Section ===== */
.booking-card {
    background: var(--color-white);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.booking-platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
    font-size: 32px;
    color: var(--color-primary);
}

.booking-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.booking-card p {
    margin-bottom: 25px;
}

.btn-booking {
    display: inline-block;
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

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

.btn-booking-primary:hover {
    background: transparent;
    color: var(--color-primary);
}

.btn-booking-secondary {
    background: #ff5a5f;
    color: var(--color-white);
    border: 2px solid #ff5a5f;
}

.btn-booking-secondary:hover {
    background: transparent;
    color: #ff5a5f;
}

.btn-booking-gold {
    background: var(--color-secondary);
    color: var(--color-white);
    border: 2px solid var(--color-secondary);
}

.btn-booking-gold:hover {
    background: transparent;
    color: var(--color-secondary);
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--color-white);
    padding: 50px;
    box-shadow: var(--shadow-soft);
}

.form-floating > label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-gray);
}

.form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 16px;
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form-select {
    border-radius: 0;
    padding: 16px;
}

.btn-submit {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 16px 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-submit:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

/* ===== Contact Info Box ===== */
.contact-info-box {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 50px;
    height: 100%;
}

.contact-info-box h3 {
    color: var(--color-white);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 20px;
    color: var(--color-secondary);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 15px;
}

/* ===== Map Section ===== */
.map-container {
    height: 400px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-brand .brand-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    margin-right: 10px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact i {
    color: var(--color-secondary);
    margin-right: 15px;
    margin-top: 3px;
}

.booking-platforms {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-platform-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition-fast);
}

.booking-platform-link i {
    margin-right: 10px;
    color: var(--color-secondary);
}

.booking-platform-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.booking-platform-link.direct {
    background: var(--color-secondary);
    color: var(--color-white);
}

.booking-platform-link.direct i {
    color: var(--color-white);
}

.booking-platform-link.direct:hover {
    background: var(--color-accent);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
}

.legal-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.legal-info strong {
    color: var(--color-secondary);
}

.legal-number {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-legal-links {
    margin-bottom: 10px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-left: 20px;
    transition: var(--transition-fast);
}

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

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* ===== Page Header (for inner pages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/pattern.png') repeat;
    opacity: 0.05;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a {
    color: var(--color-secondary);
}

.page-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Amenities List ===== */
.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--color-charcoal);
}

.amenities-list li i {
    color: var(--color-secondary);
    margin-right: 12px;
    font-size: 18px;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--color-secondary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    line-height: 1.9;
    color: var(--color-charcoal);
    margin-bottom: 25px;
    padding-top: 30px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h5 {
    font-size: 1rem;
    margin-bottom: 3px;
    font-family: var(--font-body);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-gray-light);
}

.testimonial-stars {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }

    .navbar-collapse {
        background: var(--color-white);
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-medium);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 280px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info-box {
        padding: 30px;
    }

    .booking-card {
        padding: 30px;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .footer-top {
        padding: 50px 0 30px;
    }

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

    .legal-info {
        margin-bottom: 20px;
    }

    .footer-legal-links a {
        margin: 0 10px;
    }
}

/* ===== Utilities ===== */
.text-gold {
    color: var(--color-secondary);
}

.bg-gold {
    background-color: var(--color-secondary);
}

.mb-section {
    margin-bottom: var(--section-padding);
}

.letter-spacing-wide {
    letter-spacing: 3px;
}

/* Smooth Image Loading */
.img-lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-lazy.loaded {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}
