/* ============================================================
   Gary's Barbershop – .NET 4.8 Port
   Faithful recreation of the Astra/Elementor WordPress theme
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 93.75%; scroll-behavior: smooth; }

body {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
}

a { color: #dd3333; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #fff; }
p { margin-bottom: 1.3em; color: #fff; }
p:last-child { margin-bottom: 0; }

h1,h2,h3,h4,h5,h6 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}
h1 { font-size: 86px; }
h2 { font-size: 84px; }
h3 { font-size: 28px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

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

.screen-reader-text {
    position: absolute; width:1px; height:1px;
    padding:0; margin:-1px; overflow:hidden;
    clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- Layout ---------- */
.ast-container {
    /*max-width:1180px;*/ 
    margin-left:auto; 
    margin-right:auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: absolute;
    top:0; left:0; right:0;
    z-index: 200;
    background: transparent;
}

.main-header-bar { padding: 1em 0; }

.main-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width:1180px;
    padding-left:20px;
    padding-right:20px;
    margin-left:auto;
    margin-right:auto;
}

.site-branding { flex-shrink: 0; }
.custom-logo { display:block; width:215px; height:60px; object-fit:contain; }

.main-navigation { margin-left: auto; }
.main-header-menu { list-style:none; display:flex; margin:0; padding:0; }
.main-header-menu li { position: relative; }
.main-header-menu a {
    font-size:13px;
    display:block; padding:6px 16px;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-weight:600; font-size:13px;
    /*text-transform:uppercase;*/
    letter-spacing:.5px;
    transition:color .2s;
}
.main-header-menu a:hover,
.main-header-menu .current-menu-item a { color:#dd3333; }

.menu-toggle {
    display:none;
    background:#dd3333; border:none;
    color:#fff; font-size:20px;
    padding:6px 12px; cursor:pointer;
}

/* ============================================================
   SECTIONS BASE
   ============================================================ */
.gb-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment:fixed;
}

.gb-section .gb-overlay {
    position: absolute;
    inset: 0;
    /*background: rgba(0,0,0,0.62);*/
    z-index: 1;
}

    .gb-gallery-hero .gb-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.62);
        z-index: 1;
    }

.gb-section .gb-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    align-items: center;
}

.gb-content-half { width:50%; padding-right:40px; }
.gb-content-full  { width:100%; }

/* Tag / label above headings */
.gb-tag { display:flex; align-items:center; gap:12px; margin-bottom:60px; }
.gb-tag-line { display:block; width:50px; height:2px; background:#fff; flex-shrink:0; }
.gb-tag-text {
    font-family:'Open Sans Condensed',sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}
.gb-number {
    font-family:'Montserrat',sans-serif;
    font-size:13px; font-weight:600;
    color:#fff; letter-spacing:2px; margin-bottom:10px;
}
.gb-divider { width:100%; height:2px; background:#fff; margin:14px 0 22px; }

/* ============================================================
   HERO
   ============================================================ */
.gb-hero {
    background-image: url('../images/hero-bg.jpg');
    min-height: 100vh;
}
.gb-hero .gb-inner { min-height:100vh; }
    .gb-hero h1 {
        font-size: 75px;
        line-height: 1;
        margin-bottom: 22px;
        font-family: "Montserrat", sans-serif;
        font-weight:900;
    }

.gb-hero-quote {
    display:flex; align-items:flex-start; gap:18px;
    margin:22px 0 32px;
}
.gb-quote-icon {
    flex-shrink:0; width:52px; height:52px;
    border:1px solid #fff;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:30px;
}
.gb-hero-quote h3 { font-size:24px; color:#fff; margin:0; line-height:1.4; }

.gb-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    color: #fff;
    padding: 8px 18px 8px 0px;
    font-family: 'Open Sans Condensed',sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: solid #fff;
    border-width: 1px 1px 1px 0px;
    transition: background .2s, color .2s;
    text-decoration: none;
}
    .gb-btn:hover, .gb-btn:focus {
        background: transparent;
        color: #fff;
        border: solid #fff;
        border-width: 1px 1px 1px 0px;
    }

/* ============================================================
   ABOUT
   ============================================================ */
.gb-about {
    background-image: url('../images/about-bg.jpg');
    background-position: right center;
}
.gb-about h2 { font-size:84px; margin-bottom:18px; }
    .gb-about .gb-lead {
        font-family: 'Open Sans Condensed';
        font-size: 17px;
        font-weight: 600;
        text-transform: uppercase;
        color: #fff;
        line-height: 1.7;
        margin-bottom: 20px;
    }
.gb-about p {
    font-weight:700; font-size:14px;
    color:#ddd; line-height:1.8;
}

/* ============================================================
   SERVICES
   ============================================================ */
.gb-services {
    background-image: url('../images/services-bg.jpg');
}
.gb-services h2 { font-size:84px; margin-bottom:18px; }

.gb-service-item { padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.12); margin-left:75px;}
.gb-service-item:first-of-type { border-top:1px solid rgba(255,255,255,0.12); }
.gb-service-row { /*display:flex;*/ align-items:baseline; gap:20px; }
.gb-service-row h3 { font-size:22px; color:#fff; min-width:180px; flex-shrink:0; }
.gb-service-row p { font-weight:600; font-size:13px; color:#fff; margin:0; text-transform:none; }

/* ============================================================
   PRICING
   ============================================================ */
.gb-pricing {    
    background-position: left center;
    background:#000;
}
.gb-pricing h2 { font-size:84px; margin-bottom:18px; }

.gb-cash {
    font-family:'Open Sans Condensed',sans-serif;
    font-size:20px; font-weight:700;
    text-transform:uppercase; color:#fff;
    margin-bottom:24px;
}

.gb-price-table { width:100%; }
.gb-price-row {
    display:flex; align-items:center;
    padding:12px 0; gap:8px;
    border-bottom:1px solid #fff;
}
.gb-price-service {
    font-family:'Montserrat',sans-serif;
    font-size:13px; font-weight:600;
    text-transform:uppercase; letter-spacing:.5px;
    color:#fff; white-space:nowrap; padding-right:8px;
}
.gb-price-dots {
    flex:1; /*border-bottom:1px dotted rgba(255,255,255,0.25);*/
    height:0; min-width:20px;
}
.gb-price-amount {
    font-family:'Montserrat',sans-serif;
    font-size:13px; font-weight:600;
    color:#fff; white-space:nowrap; padding-left:8px;
}
.gb-price-divider { border-top:1px solid rgba(255,255,255,0.12); }

/* ============================================================
   BARBERS
   ============================================================ */
.gb-barbers {    
    background-image: url('../images/barbers-bg.jpg');
}
.gb-barbers .gb-overlay { display:none; }
.gb-barbers h2 { font-size:84px; margin-bottom:18px; }

.gb-barber-grid { display:flex; gap:40px; flex-wrap:wrap; margin-top:30px; }
.gb-barber-card { /*text-align:center;*/ }
.gb-barber-card figure { margin:0 0 12px; overflow:hidden; }

.gb-barber-photo {
    width: 285px;
    height: 429px;
    object-fit: cover;
    transition: transform .4s;
    opacity: 1;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.gb-barber-photo:hover { transform:rotate(2deg) scale(1.04); }

.gb-barber-title { font-size:17px; color:#fff; margin-bottom:6px; }
.gb-barber-desc {
    font-family:'Montserrat',sans-serif;
    font-size:14px; font-weight:600;
    color:#fff; text-transform:none;
}

/* ============================================================
   BOOKING
   ============================================================ */
.gb-booking { background-color:#000; padding:0px 20px; }

.gb-booking-inner {
    max-width:1180px; margin:0 auto;
    display:flex; gap:60px; align-items:center; flex-wrap:wrap;
}

.gb-booking-left { flex:0 0 70%; min-width:260px; }
.gb-booking-right { flex:1; min-width:260px; display:flex; justify-content:center; }

.gb-booking-app-img { margin-bottom:16px; }

.gb-booking-text {
    font-family:'Montserrat',sans-serif;
    font-size:14px; font-weight:600; color:#fff;
    margin-bottom:20px; text-transform:none;
}

.gb-app-badges { display:flex; flex-direction:row; gap:12px; }
.gb-app-badges a img { max-width:200px; }

.gb-booking-photo { width:300px; height:300px; object-fit:cover; }

/* ============================================================
   HOURS + CONTACT
   ============================================================ */
.gb-info { background-color:#000; padding:80px 20px; }

.gb-info-inner {
    max-width:1180px; margin:0 auto;
    display:flex; gap:60px; flex-wrap:wrap; align-items:flex-start;
}

.gb-info-col { flex:1; min-width:280px; text-align:center}

.gb-info-title {
    font-family:'Open Sans Condensed',sans-serif;
    font-size:28px; font-weight:700;
    text-transform:uppercase; color:#fff;
    margin-bottom:24px;
}

.gb-hours {
    width: 100%;
    margin-bottom: 20px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #000000 0%, #7a7a7a 100% 100% );
}
.gb-hours-row {
    display:flex; justify-content:space-between; align-items:center;
    padding:15px 0; border-bottom:0px solid #1e1e1e;
    margin-left:40px; margin-right:40px;
}
.gb-hours-row:first-child { border-top:1px solid #1e1e1e; }
.gb-hours-day { font-family:'Montserrat',sans-serif; font-weight:600; color:#fff; font-size:14px; }
.gb-hours-time { font-family:'Montserrat',sans-serif; font-weight:400; color:#888; font-size:14px; }
.gb-hours-row.closed .gb-hours-day,
.gb-hours-row.closed .gb-hours-time { color:#dd3333; }

.gb-appt-note {
    font-family:'Open Sans Condensed',sans-serif;
    font-size:20px; font-weight:700;
    text-transform:uppercase; color:#fff; margin-top:16px;
}

.gb-contact-grid { display:flex; gap:30px; flex-wrap:wrap; margin-bottom:24px; }
.gb-contact-grid p { font-weight:400; font-size:14px; color:#aaa; margin-bottom:6px; text-transform:none; }

.gb-map iframe { width:100%; height:300px; border:none; display:block; }

/* ============================================================
   SOCIAL
   ============================================================ */
.gb-social { background-color:#000; padding:80px 20px; text-align:center; }
.gb-social-icons { display:flex; gap:20px; justify-content:center; }
.gb-social-icon {
    display:inline-flex; align-items:center; justify-content:center;
    width:1em; height:1em;
    /*border:2px solid #dd3333; color:#dd3333;*/
    font-size:15px; text-decoration:none;
    transition:background .2s, color .2s;
    padding:1em;
    background:#2d2d2d;
    color:#fff;
}
    .gb-social-icon:hover {
        color: #00ce1b;
        background-color: rgba(0,206,27,0.13);

{
    background-color: rgba(0,206,27,0.13);
}
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background:#000; border-top:1px solid #1a1a1a; }
.ast-small-footer { padding:16px 0; }
.ast-small-footer-wrap {
    /*display:flex;*/ justify-content:space-between; align-items:center;
    flex-wrap:wrap; gap:8px;
    font-size:14px; color:#fff;
    font-family:'Montserrat',sans-serif; font-weight:600;
    text-align:center;
    line-height:2;
}
.ast-footer-site-title { color:#fff; }
.ast-small-footer-section-2 a { color:#fff; }
.ast-small-footer-section-2 a:hover { color:#fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:921px) {
    .menu-toggle { display:block; }
    .main-navigation {
        display:none; position:absolute;
        top:100%; left:0; right:0;
        background:#000; z-index:300;
    }
    .main-navigation.open { display:block; }
    .main-header-menu { flex-direction:column; }
    .main-header-menu a { padding:12px 20px; border-bottom:1px solid #1a1a1a; }
    .main-header-bar { position:relative; }
}

@media (max-width:768px) {
    h1, .gb-hero h1 { font-size:40px; }
    h2 { font-size:36px; }
    h3 { font-size:22px; }
    .gb-section .gb-inner { padding:80px 20px; }
    .gb-content-half { width:100%; padding-right:0; padding-top:45px }
    .gb-hero { min-height:80vh; }
    .gb-hero .gb-inner { min-height:80vh; }
    .gb-booking-inner { flex-direction:column; gap:40px; }
    .gb-booking-left { flex:none; width:100%; }
    .gb-info-inner { flex-direction:column; gap:40px; }
    .ast-small-footer-wrap { flex-direction:column; text-align:center; }
}

@media (max-width:480px) {
    h1, .gb-hero h1 { font-size:28px; }
    h2 { font-size:26px; }
    .gb-section .gb-inner { padding:60px 16px; }
    .gb-service-row { flex-direction:column; gap:4px; }
    .gb-service-row h3 { min-width:auto; }
    .gb-price-service { font-size:11px; }
    .gb-app-badges { flex-direction:column; }
}

@media (min-width: 769px) {
/*    .ast-container {
        max-width: 1180px;
    }*/
}

@media (min-width: 1200px) {
/*    .ast-container {
        max-width: 100%;
    }*/
}

@media (min-width: 992px) {
/*    .ast-container {
        max-width: 100%;
    }*/
}

@media (min-width: 768px) {
/*    .ast-container {
        max-width: 100%;
    }*/
}

@media (min-width: 544px) {
/*    .ast-container {
        max-width: 100%;
    }*/
}