@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg1: #fffdfd;
    --bg2: #f8f4f8;
    --body: #312c33;
    --brand: #c7b7a0;
    --white: #fff;
    --text-black: #423d3b;
    
    /* Typography variables */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Qaz', 'Playfair Display', serif;
}

@font-face {
    font-family: 'Qaz';
    src: url('fonts/qaz.regular.ttf') format('truetype');
    font-display: swap;
}

body {
    font-family: var(--font-body);
    color: var(--body);
    line-height: 1.7;
    background-color: var(--bg1);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--text-black);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-black);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 700;
    line-height: 1.4;
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: var(--body);
}

strong {
    font-weight: 500;
    color: var(--text-black);
}

img {
    width: 100%;

}

section {
    padding-top: 160px;
    padding-bottom: 160px;
}

/* NAVBAR */

.navbar {
    background: linear-gradient(to bottom, var(--bg1), var(--bg1));
}

.navbar .navbar-nav .nav-link {
    color: var(--body);
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    border-radius: 2px;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--brand);
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar .navbar-nav .nav-link.active {
    color: var(--brand);
    font-weight: 600;
}

.navbar .navbar-nav .nav-link.active::before,
.navbar .navbar-nav .nav-link.active::after {
    width: 90%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link.active::before {
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    box-shadow: 0 0 8px rgba(199, 183, 160, 0.4);
}

.navbar-brand {
    position: relative;
    background: url(../img/bb_logo_transparent.png) no-repeat center center;
    background-size: contain;
    width: 420px;
    height: 70px;
    left: 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-brand {
        width: 250px;  /* Half of the original width for tablets */
        height: 45px;  /* Half of the original height for tablets */
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        width: 250px;  /* Adjusted width for mobile devices */
        height: 40px;  /* Adjusted height for mobile devices */
    }
}


/* HOME VIEW */

#home-view {
    background: linear-gradient(to right, #dee2e6, rgba(27, 31, 52, 0));
    min-height: 100vh;
    background-position: center;
    background-size: cover;
}

#home-view h2 {
    font-family: var(--font-heading);
    color: var(--text-black);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

#home-view p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--body);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

#home-view ul {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

#home-view li {
    margin-bottom: 0.5rem;
    color: var(--body);
}
@media (max-width: 768px) {
    #home-view .btn {
        width: 100%;
        margin-top: 1.5rem;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    #home-view h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    #home-view p {
        font-size: 1rem;
        line-height: 1.75;
    }
    
    body {
        font-size: 15px;
    }
    
    p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

/* ABOUT */

#about {
    /*background: linear-gradient(to right, #b9719c52, rgba(27, 31, 52, 0)), url(../img/face1.jpg);*/
    /*min-height: 100vh;*/
    /*background-position: center;*/
    /*background-size: cover;*/
    position: relative;
}

#about::after {
    content: "";
    width: 40%;
    height: 100%;
    background-color: var(--brand);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#about p {
    margin-top: 24px;
    margin-bottom: 24px;
}

#about h4 {
    font-family: var(--font-heading);
    color: var(--brand);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#about h5 {
    font-family: var(--font-body);
    color: var(--brand);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

#about p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--body);
}

@media (max-width: 768px) { /* Adjust this breakpoint as needed */
    #about::after {
        width: 100%;
    }
    #about h4{
        margin-top: 20px;
        color: var(--text-black);
    }
    #about h5{
        color: var(--text-black);
        margin-top: 8px;
        margin-bottom: 24px;
    }
}


/* SERVICES */

#services {
    /*background: linear-gradient(to right, #b9719c52, rgba(27, 31, 52, 100)), url(../img/nails.jpg);*/
    min-height: 100vh;
    background-position: center;
    background-size: cover;
}

#services p {
    margin-top: 24px;
    margin-bottom: 24px;
    color: white;
}

#services .service .content {
   padding: 28px;
}

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

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

.link-more {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    left: 1px;
}

.link-more .icon {
    transition: all 0.4s ease;
}

.link-more:hover .icon {
    transform: translateX(8px);
}

/* PRICES - Modern 2025 Design */

#prices {
    position: relative;
    background: linear-gradient(to bottom, rgba(250, 251, 252, 0.5), rgba(255, 253, 253, 0.3));
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

#prices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(234, 221, 202, 0.03) 2px, rgba(234, 221, 202, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(234, 221, 202, 0.03) 2px, rgba(234, 221, 202, 0.03) 4px);
    pointer-events: none;
    z-index: 0;
}

#prices .container {
    position: relative;
    z-index: 1;
}

.pricing-header {
    margin-bottom: 4rem;
}

.pricing-label {
    font-family: var(--font-body);
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pricing-title-italic {
    font-style: italic;
    color: var(--brand);
}

.pricing-subtitle {
    font-family: var(--font-body);
    color: #6c757d;
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Table Styling */
.table-modern {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(234, 221, 202, 0.4);
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    animation: fadeInUp 0.6s ease-out;
    margin-top: 2rem;
}

.table-modern thead,
.table-modern thead.table-dark {
    background: linear-gradient(135deg, rgba(234, 221, 202, 0.98) 0%, rgba(234, 221, 202, 0.92) 100%) !important;
    border-bottom: 2px solid rgba(234, 221, 202, 0.6);
}

.table-modern thead th,
.table-modern thead.table-dark th {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2em;
    padding: 1.5rem 2rem;
    color: #2c241f !important;
    text-transform: uppercase;
    border: none;
    position: relative;
    background: transparent !important;
}

.table-modern thead th:first-child {
    padding-left: 2.5rem;
}

.table-modern thead th:last-child {
    padding-right: 2.5rem;
}

.table-modern thead th:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(66, 61, 59, 0.15);
}

.table-modern tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(234, 221, 202, 0.15);
    position: relative;
}

.table-modern tbody tr:last-child {
    border-bottom: none;
}

.table-modern tbody tr:hover {
    background: linear-gradient(90deg, rgba(234, 221, 202, 0.08) 0%, rgba(234, 221, 202, 0.12) 100%);
    transform: translateX(2px);
    box-shadow: inset 4px 0 0 var(--brand);
}

.table-modern tbody td {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 1.25rem 2rem;
    line-height: 1.7;
    color: var(--body);
    vertical-align: middle;
    border: none;
    transition: color 0.3s ease;
}

.table-modern tbody td:first-child {
    font-weight: 500;
    color: var(--text-black);
    padding-left: 2.5rem;
    width: 55%;
}

.table-modern tbody tr:hover td:first-child {
    color: var(--text-black);
    font-weight: 600;
}

.table-modern tbody td:nth-child(2) {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand);
    text-align: right;
    white-space: nowrap;
    padding-right: 2rem;
    width: 20%;
}

.table-modern tbody td:nth-child(3) {
    color: #6c757d;
    font-size: 0.875rem;
    text-align: right;
    padding-right: 2.5rem;
    width: 25%;
    font-weight: 400;
}

.table-modern .table-secondary {
    background: linear-gradient(90deg, rgba(108, 117, 125, 0.12) 0%, rgba(108, 117, 125, 0.08) 60%, rgba(234, 221, 202, 0.35) 60%, rgba(234, 221, 202, 0.45) 100%);
    border-top: 2px solid rgba(234, 221, 202, 0.5);
    border-bottom: 2px solid rgba(234, 221, 202, 0.4);
    position: relative;
}

.table-modern .table-secondary td {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-black);
    padding: 1.5rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-left: 2.5rem;
    background: transparent;
    position: relative;
    z-index: 1;
    text-align: left !important;
}

.table-modern .table-secondary td[colspan="3"] {
    position: relative;
    text-align: left !important;
    padding-right: 40%;
}

.table-modern .table-secondary td[colspan="3"]::after {
    content: '';
    position: absolute;
    left: 60%;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: rgba(234, 221, 202, 0.4);
    z-index: -1;
}

.table-modern .table-secondary + tr {
    border-top: none;
}

/* Add spacing between category sections */
.table-modern tbody tr.table-secondary {
    margin-top: 1rem;
}

/* Improve readability with better line spacing */
.table-modern tbody tr:not(.table-secondary) td:first-child {
    line-height: 1.6;
}

/* Add subtle animation to price column */
.table-modern tbody tr:hover td:nth-child(2) {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    #prices {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .pricing-header,
    .pricing-header.mb-5 {
        margin-bottom: 0.5rem !important;
    }
    
    .pricing-label {
        font-size: 0.6875rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 0;
    }
    
    #prices .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .table-modern {
        border-radius: 1rem;
        font-size: 0.8125rem;
        display: table;
        width: 100%;
    }
    
    .table-modern thead {
        display: none;
    }
    
    .table-modern tbody {
        display: table-row-group;
        width: 100%;
    }
    
    .table-modern tbody tr {
        display: table-row;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(234, 221, 202, 0.2);
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .table-modern tbody tr:hover {
        transform: none;
        box-shadow: none;
        background: rgba(234, 221, 202, 0.08);
    }
    
    .table-modern tbody td {
        display: table-cell;
        padding: 0.75rem 0.5rem;
        text-align: left !important;
        border: none;
        vertical-align: middle;
    }
    
    .table-modern tbody td:first-child {
        font-weight: 500;
        color: var(--text-black);
        font-size: 0.8125rem;
        line-height: 1.4;
        width: auto;
        padding-left: 0.75rem;
        padding-right: 0.5rem;
    }
    
    .table-modern tbody td:nth-child(2) {
        font-size: 1rem;
        font-weight: 700;
        color: var(--brand);
        text-align: right !important;
        white-space: nowrap;
        padding-left: 0.5rem;
        padding-right: 0.75rem;
        width: auto;
        min-width: 70px;
    }
    
    .table-modern tbody td:nth-child(2)::before {
        display: none;
    }
    
    .table-modern tbody td:nth-child(3) {
        font-size: 0.75rem;
        color: #6c757d;
        text-align: right !important;
        white-space: nowrap;
        padding-left: 0.5rem;
        padding-right: 0.75rem;
        width: auto;
        min-width: 60px;
    }
    
    .table-modern tbody td:nth-child(3)::before {
        display: none;
    }
    
    .table-modern .table-secondary {
        background: linear-gradient(90deg, rgba(108, 117, 125, 0.12) 0%, rgba(108, 117, 125, 0.08) 60%, rgba(234, 221, 202, 0.35) 60%, rgba(234, 221, 202, 0.45) 100%);
        border-top: 2px solid rgba(234, 221, 202, 0.5);
        border-bottom: 2px solid rgba(234, 221, 202, 0.4);
        margin-bottom: 0.5rem;
    }
    
    .table-modern .table-secondary td {
        font-size: 0.875rem;
        padding: 0.75rem 0.5rem;
        letter-spacing: 0.08em;
        text-align: left !important;
        padding-left: 0.75rem;
        padding-right: 40%;
    }
    
    .table-modern .table-secondary td[colspan="3"]::after {
        display: block;
    }
}



/* CONTACT */

#contact {
    position: relative;
}

#contact h6 {
    font-family: var(--font-heading);
    color: var(--text-black);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
}

#contact .contact-info p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--body);
}

#contact .contact-info strong {
    font-weight: 600;
    color: var(--text-black);
    font-size: 1.0625rem;
}

#contact .opening-hours {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    row-gap: 8px;
}

#contact .day {
    text-align: left;
    font-weight: 500;
}

#contact .hour {
    text-align: right;
}

#contact .day, #contact .hour {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

@media (max-width: 768px) {
    #contact .opening-hours {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }
    
    #contact .hour {
        text-align: left;
        margin-bottom: 8px;
    }
    
    #contact iframe {
        height: 300px;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    #contact h6 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    #contact .contact-info p {
        font-size: 1rem;
    }
    
    #contact .row > div {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .fb-page,
    .fb-page iframe,
    .fb-page > span,
    .fb-page > div {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden;
    }
    
    .instagram-media {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 auto;
    }
    
    #contact .container {
        overflow-x: hidden;
        max-width: 100%;
    }
}



/* Button */

.btn {
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all .4s ease;
    border-radius: 0.5rem;
    line-height: 1.5;
}

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

.btn-brand:hover {
    background-color: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-outline-brand {
    background-color: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-outline-brand:hover {
    background-color: var(--brand);
}

/* Additional Styles */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.text-beige-800 {
    color: #856c59;
}

.bg-beige-100 {
    background-color: #FDFBF5;
}

.bg-beige-300 {
    background-color: #EADDCA;
}

.border-beige-300 {
    border-color: #EADDCA;
}

.hover\:bg-beige-400:hover {
    background-color: #DBC9B8;
}

.hover\:border-beige-400:hover {
    border-color: #DBC9B8;
}

.btn-beige {
    background-color: #EADDCA;
    color: #856c59;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 0.875rem 2.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,0.15);
    transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
    border: 1px solid #EADDCA;
    display: inline-block;
    text-decoration: none;
    line-height: 1.5;
}

.btn-beige:hover {
    background-color: #DBC9B8;
    border-color: #DBC9B8;
    color: #856c59;
    transform: translateY(-2px);
    box-shadow: 0 .75rem 1.5rem rgba(0,0,0,0.2);
}

#home-view {
    background-color: #f9f9f9;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--brand);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top:hover {
    background-color: var(--text-black);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.back-to-top.show {
    display: flex;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}


/* Image improvements */
img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Section fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out;
}


/* Contact section improvements */
#contact iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Facebook and Instagram embeds */
.fb-page,
.fb-page iframe,
.fb-page > span,
.fb-page > div {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
}

.instagram-media {
    max-width: 100% !important;
    width: calc(100% - 2px) !important;
    min-width: 326px !important;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .instagram-media {
        min-width: 280px !important;
        width: 100% !important;
    }
}

#contact .row > div {
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

#contact .container {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Mobile improvements */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    #home-view {
        padding-top: 80px;
    }
    
    #about img {
        margin-bottom: 2rem;
    }
    
    #about h4 {
        font-size: 1.5rem;
    }
    
    #about h5 {
        font-size: 1.1rem;
    }
    
}

/* Loading animation for images */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0.7;
}

img[loading="lazy"]:not([data-loaded]) {
    opacity: 0.7;
}

/* Focus improvements for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

/* Typography utilities */
.display-5 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-black);
}

.display-6 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-black);
}

.text-muted {
    color: #6c757d !important;
}

/* List improvements */
ul, ol {
    font-family: var(--font-body);
    line-height: 1.8;
}

li {
    margin-bottom: 0.5rem;
}

/* Link improvements */
a {
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

/* Table text improvements */
.table {
    font-family: var(--font-body);
}

/* Print styles */
@media print {
    .navbar,
    .back-to-top,
    #contact iframe,
    .fb-page,
    .instagram-media {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}
