/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brown: #4A2C2A;
    --dark-brown: #2a1810;
    --bronze: #9F6841;
    --burnt-orange: #DA680F;
    --gold: #D2A146;
    --beige: #E0BB82;
    --cream: #F5E6D3;
    --dark: #1a1a1a;
    --light: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-brown);
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-brown);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.img-acc{
    height: 100%;
    width: 100%;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burnt-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--burnt-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--cream);
    margin: 5px;
    transition: all 0.3s ease;
}

/* ========================================
   BARBER POLE STRIPES (Reusable)
======================================== */
.barber-stripes {
    position: absolute;
    width: 120px;
    height: 100%;
    top: 0;
    background: repeating-linear-gradient(
            45deg,
            var(--burnt-orange),
            var(--burnt-orange) 20px,
            var(--cream) 20px,
            var(--cream) 40px,
            var(--bronze) 40px,
            var(--bronze) 60px
    );
    opacity: 0.12;
    z-index: 1;
}

.left-stripe, .services-stripe-left, .hours-stripe-left, .contact-stripe-left {
    left: 0;
    transform: skewY(-5deg);
}

.right-stripe, .services-stripe-right, .hours-stripe-right, .contact-stripe-right {
    right: 0;
    transform: skewY(5deg);
}

/* ========================================
   SECTION HEADERS (Reusable)
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--bronze) 100%);
    color: var(--cream);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(218, 104, 15, 0.2);
}

.light-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--beige) 100%);
    color: var(--primary-brown);
}

.section-title {
    font-size: 52px;
    color: var(--primary-brown);
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
}

.section-title-alt {
    font-size: 48px;
    color: var(--primary-brown);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.light-title {
    color: var(--cream);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--burnt-orange), transparent);
    margin: 0 auto 20px;
}

.light-underline {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ========================================
   BUTTONS (Reusable)
======================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--burnt-orange);
    color: var(--cream);
    border: 2px solid var(--burnt-orange);
}

.btn-primary:hover {
    background-color: transparent;
    border: 2px solid var(--burnt-orange);
    color: var(--burnt-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218, 104, 15, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--cream);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--primary-brown);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(210, 161, 70, 0.4);
}

.btn-large {
    padding: 18px 50px;
    font-size: 16px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a1810 0%, #4A2C2A 50%, #3d2419 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%234A2C2A" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(74, 44, 42, 0.7) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-main {
    color: var(--cream);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--bronze) 100%);
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(218, 104, 15, 0.3);
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    color: var(--cream);
    margin-bottom: 30px;
    line-height: 1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.title-line-1 {
    font-size: 48px;
    color: var(--beige);
    letter-spacing: 3px;
}

.title-line-2 {
    font-size: 96px;
    color: var(--burnt-orange);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: -10px 0;
}

.title-line-3 {
    font-size: 52px;
    color: var(--gold);
    letter-spacing: 4px;
}

.hero-tagline {
    font-size: 20px;
    color: var(--beige);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(210, 161, 70, 0.3);
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    font-size: 20px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-info {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(210, 161, 70, 0.3);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

.info-value {
    font-size: 16px;
    color: var(--cream);
}

.hero-featured {
    position: relative;
}

.featured-frame {
    position: relative;
    padding: 20px;
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--gold);
}

.frame-corner.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.frame-corner.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.frame-corner.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.featured-image-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--burnt-orange) 50%, var(--gold) 100%);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}



.featured-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--gold) 100%);
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(218, 104, 15, 0.4);
    border: 3px solid var(--cream);
}

.badge-star {
    font-size: 32px;
    color: var(--cream);
}

.badge-text {
    display: flex;
    flex-direction: column;
    color: var(--cream);
}

.badge-text strong {
    font-size: 16px;
    line-height: 1.2;
}

.badge-text small {
    font-size: 12px;
    opacity: 0.9;
}

.hero-decoration {
    position: absolute;
    font-size: 80px;
    opacity: 0.05;
    z-index: 0;
}

.scissors-left {
    top: 20%;
    left: 10%;
    transform: rotate(-45deg);
}

.scissors-right {
    bottom: 20%;
    right: 10%;
    transform: rotate(135deg);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--beige);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 120px 0;
    background-color: var(--light);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-intro {
    font-size: 22px;
    line-height: 1.8;
    color: var(--primary-brown);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--burnt-orange);
    font-family: 'Bebas Neue', cursive;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-image-wrapper {
    position: relative;
}

.about-frame-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid var(--bronze);
    z-index: 2;
}

.tl-corner {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.br-corner {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--burnt-orange) 50%, var(--gold) 100%);
    border-radius: 10px;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.about-pattern {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            45deg,
            var(--beige),
            var(--beige) 10px,
            transparent 10px,
            transparent 20px
    );
    opacity: 0.3;
    border-radius: 10px;
    z-index: 0;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--light);
    padding: 50px 35px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(218, 104, 15, 0.25);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 900;
    color: var(--cream);
    font-family: 'Bebas Neue', cursive;
    line-height: 1;
    z-index: 0;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--bronze) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(218, 104, 15, 0.3);
}

.service-icon {
    font-size: 36px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-brown);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-image-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--burnt-orange) 100%);
    border-radius: 10px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.except-1{

    padding-top: 1px;
}

.except-2{

    padding-top: 40px;
}

.service-decorator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--burnt-orange), var(--gold));
    border-radius: 0 0 15px 15px;
}

.featured-service {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--bronze) 100%);
    border: 3px solid var(--gold);
}

.featured-service h3,
.featured-service p {
    color: var(--cream);
}

.service-highlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--primary-brown);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(210, 161, 70, 0.4);
    z-index: 10;
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery {
    padding: 120px 0;
    background-color: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--bronze) 50%, var(--gold) 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;

}

.gallery-item.revealed {
    opacity: 1;
    transform: scale(1);
}

.gallery-item.large-item {
    grid-column: span 2;
    height: 400px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 44, 42, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.gallery-label {
    color: var(--cream);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   HOURS SECTION
======================================== */
.hours {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hours-left {
    position: relative;
    z-index: 2;
}

.hours-intro {
    margin-bottom: 40px;
}

.hours-intro h3 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.hours-intro p {
    font-size: 18px;
    color: var(--beige);
    line-height: 1.8;
}

.hours-table {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    border: 1px solid rgba(210, 161, 70, 0.2);
}

.hours-row {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 20px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    opacity: 0.5;
}

.day {
    font-weight: 600;
    min-width: 120px;
}

.dots {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(
            to right,
            var(--gold) 0px,
            var(--gold) 5px,
            transparent 5px,
            transparent 10px
    );
    margin: 0 15px;
}

.time {
    color: var(--burnt-orange);
    font-weight: 600;
}

.hours-right {
    position: relative;
}

.hours-frame-wrapper {
    position: relative;
    padding: 20px;
}

.hours-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--burnt-orange) 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hours-image-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;

}

/* ========================================
   REVIEWS SECTION
======================================== */
.reviews {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--light) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.review-card {
    background: var(--light);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.review-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.review-decoration {
    position: absolute;
    top: -20px;
    left: 30px;
}

.quote-mark {
    font-size: 80px;
    color: var(--burnt-orange);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.3;
}

.stars {
    color: var(--burnt-orange);
    font-size: 24px;
    margin-bottom: 25px;
}

.stars-rating {
    position: relative;
    display: inline-block;
}

.half-star {
    position: relative;
    display: inline-block;
    width: 0.5em;
    overflow: hidden;
}

.rating-number {
    display: block;
    font-size: 0.5em;
    margin-top: 5px;
    color: var(--bronze);
}

.review-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--cream);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--gold) 100%);
    border: 3px solid var(--burnt-orange);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--primary-brown);
    font-size: 16px;
}

.author-location {
    font-size: 14px;
    color: #999;
}

.review-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--gold);
}

.tl-review {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.br-review {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.featured-review {
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--bronze) 100%);
}

.featured-review .review-text,
.featured-review .author-name {
    color: var(--cream);
}

.featured-review .stars {
    color: var(--gold);
}

.featured-review .author-location {
    color: var(--beige);
}

.featured-review .review-author {
    border-top-color: rgba(255,255,255,0.2);
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--bronze) 100%);
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-left {
    color: var(--cream);
}

.contact-intro {
    margin-bottom: 50px;
}

.contact-intro h3 {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-intro p {
    font-size: 18px;
    color: var(--beige);
    line-height: 1.8;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    min-width: 40px;
}

.contact-details h4 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-details p {
    font-size: 16px;
    color: var(--beige);
    line-height: 1.7;
}

.contact-details a {
    color: var(--burnt-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-cta-wrapper {
    display: flex;
    justify-content: flex-start;
}

.contact-right {
    position: relative;
}

.contact-frame-wrapper {
    position: relative;
    padding: 20px;
}

.contact-image-placeholder {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--bronze) 50%, var(--gold) 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.contact-image-placeholder iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark-brown);
    color: var(--beige);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
}

.footer-stripe-left,
.footer-stripe-right {
    height: 100%;
}

.footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Logo */
.footer-logo-img {
    margin-bottom: 25px;
}

.footer-logo-img img {
    height: 70px;
    width: auto;
    filter: brightness(1.1);
    transition: filter 0.4s ease;
}

.footer-logo-img img:hover {
    filter: brightness(1.3);
}

/* Tagline */
.footer-tagline {
    font-size: 18px;
    line-height: 1.8;
    color: var(--beige);
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

/* Divider */
.footer-divider {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg,
    transparent,
    var(--gold) 30%,
    var(--burnt-orange) 50%,
    var(--gold) 70%,
    transparent
    );
    margin: 0 auto 40px;
}

/* Bottom section */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--beige);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.footer-signature {
    font-size: 13px;
    color: var(--beige);
    opacity: 0.6;
    font-style: italic;
}

.footer-signature a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-signature a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--burnt-orange);
    transition: width 0.3s ease;
}

.footer-signature a:hover {
    color: var(--burnt-orange);
}

.footer-signature a:hover::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablettes et petits ordinateurs portables (1024px et moins) */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 30px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-featured {
        order: -1;
    }

    .featured-image-placeholder {
        height: 400px;
    }

    .title-line-1 {
        font-size: 36px;
    }

    .title-line-2 {
        font-size: 72px;
    }

    .title-line-3 {
        font-size: 42px;
    }

    .hero-info {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    /* About Section */
    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-wrapper {
        order: -1;
    }

    .about-image-placeholder {
        height: 400px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Services Section */
    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 40px 30px;
    }

    /* Gallery Section */
    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-item.large-item {
        grid-column: span 1;
        height: 320px;
    }

    /* Hours Section */
    .hours {
        padding: 80px 0;
    }

    .hours-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hours-image-placeholder {
        height: 400px;
    }

    /* Reviews Section */
    .reviews {
        padding: 80px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact Section */
    .contact {
        padding: 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-image-placeholder {
        height: 400px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }
}

/* Tablettes (768px et moins) */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .navbar {
        padding: 15px 0;
    }

    .burger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        background-color: var(--primary-brown);
        flex-direction: column;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: 100px 30px 30px;
        gap: 15px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        overflow-y: auto;
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        font-size: 16px;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .logo-img {
        height: 50px;
    }

    .navbar.scrolled .logo-img {
        height: 40px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .title-line-1 {
        font-size: 28px;
    }

    .title-line-2 {
        font-size: 56px;
        letter-spacing: 4px;
    }

    .title-line-3 {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-feature {
        font-size: 13px;
        padding: 10px 15px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 30px;
    }

    .btn-large {
        padding: 15px 35px;
        font-size: 14px;
    }

    .featured-image-placeholder {
        height: 300px;
    }

    .featured-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .frame-corner {
        width: 40px;
        height: 40px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Barber Stripes */
    .barber-stripes {
        width: 60px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 18px;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .section-title-alt {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about-intro {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .about-image-placeholder {
        height: 350px;
    }

    .about-frame-corner {
        width: 50px;
        height: 50px;
    }

    /* Services Section */
    .services {
        padding: 60px 0;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-number {
        font-size: 56px;
        top: 15px;
        right: 15px;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-icon {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .service-image-placeholder {
        height: 180px;
    }

    .except-1,
    .except-2 {
        padding-top: 0;
    }

    /* Gallery Section */
    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-item.large-item {
        height: 280px;
    }

    /* Hours Section */
    .hours {
        padding: 60px 0;
    }

    .hours-intro h3 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hours-intro p {
        font-size: 16px;
    }

    .hours-table {
        padding: 30px 20px;
    }

    .hours-row {
        font-size: 16px;
        padding: 15px 0;
    }

    .day {
        min-width: 100px;
        font-size: 15px;
    }

    .time {
        font-size: 15px;
    }

    .hours-image-placeholder {
        height: 350px;
    }

    /* Reviews Section */
    .reviews {
        padding: 60px 0;
    }

    .review-card {
        padding: 35px 25px;
    }

    .quote-mark {
        font-size: 60px;
    }

    .stars {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .review-text {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-location {
        font-size: 13px;
    }

    .review-corner {
        width: 30px;
        height: 30px;
    }

    /* Contact Section */
    .contact {
        padding: 60px 0;
    }

    .contact-intro h3 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-intro p {
        font-size: 16px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-details h4 {
        font-size: 16px;
    }

    .contact-details p {
        font-size: 15px;
    }

    .contact-image-placeholder {
        height: 350px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-logo-img img {
        height: 60px;
    }

    .footer-tagline {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .footer-copyright,
    .footer-signature {
        font-size: 13px;
    }
}

/* Mobiles (480px et moins) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    .hero {
        padding: 70px 0 30px;
    }

    .hero-container {
        padding: 0 15px;
    }

    .title-line-1 {
        font-size: 24px;
    }

    .title-line-2 {
        font-size: 48px;
        letter-spacing: 3px;
        margin: -5px 0;
    }

    .title-line-3 {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-feature {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero-info {
        padding-top: 20px;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 14px;
    }

    .featured-image-placeholder {
        height: 250px;
    }

    .featured-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .frame-corner {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }

    /* Section Headers */
    .section-badge {
        font-size: 10px;
        padding: 5px 15px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-title-alt {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }

    /* About Section */
    .about {
        padding: 50px 0;
    }

    .about-intro {
        font-size: 17px;
    }

    .about-text p {
        font-size: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .about-image-placeholder {
        height: 300px;
    }

    .about-frame-corner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }

    /* Services Section */
    .services {
        padding: 50px 0;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-number {
        font-size: 48px;
    }

    .service-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .service-icon {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-image-placeholder {
        height: 160px;
        margin-top: 20px;
    }

    /* Gallery Section */
    .gallery {
        padding: 50px 0;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-label {
        font-size: 16px;
    }

    /* Hours Section */
    .hours {
        padding: 50px 0;
    }

    .hours-intro h3 {
        font-size: 24px;
    }

    .hours-intro p {
        font-size: 15px;
    }

    .hours-table {
        padding: 25px 15px;
    }

    .hours-row {
        font-size: 14px;
        padding: 12px 0;
    }

    .day {
        min-width: 80px;
        font-size: 14px;
    }

    .time {
        font-size: 14px;
    }

    .hours-image-placeholder {
        height: 300px;
    }

    /* Reviews Section */
    .reviews {
        padding: 50px 0;
    }

    .review-card {
        padding: 30px 20px;
    }

    .review-decoration {
        top: -15px;
        left: 20px;
    }

    .quote-mark {
        font-size: 50px;
    }

    .stars {
        font-size: 18px;
    }

    .review-text {
        font-size: 14px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-name {
        font-size: 14px;
    }

    .review-corner {
        width: 25px;
        height: 25px;
        border-width: 2px;
    }

    /* Contact Section */
    .contact {
        padding: 50px 0;
    }

    .contact-intro h3 {
        font-size: 28px;
    }

    .contact-intro p {
        font-size: 15px;
    }

    .contact-details h4 {
        font-size: 15px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .contact-image-placeholder {
        height: 300px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo-img img {
        height: 50px;
    }

    .footer-tagline {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .footer-divider {
        max-width: 300px;
        margin-bottom: 30px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-signature {
        font-size: 12px;
    }
}

/* Très petits écrans (360px et moins) */
@media screen and (max-width: 360px) {
    .title-line-2 {
        font-size: 42px;
    }

    .title-line-3 {
        font-size: 24px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-title-alt {
        font-size: 24px;
    }
    .featured-image-placeholder {
        height: 200px;
    }

    .featured-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}
