/* ===================================================================
   GLOW BY YAZ - MESOESTETIC STYLE REDESIGN
   Clean, minimal, professional aesthetic clinic design
   =================================================================== */

/* === FONTS === */
@font-face {
    font-family: 'Atteron';
    src: url('fonts/Atteron-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Telegraf';
    src: url('fonts/Telegraf-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

/* === COLOR VARIABLES (Mesoestetic Style) === */
:root {
    --white: #ffffff;
    --black: #000000;
    --dark-grey: #333333;
    --mid-grey: #666666;
    --light-grey: #f5f5f5;
    --gold: #9d8b6c;
    --gold-hover: #b8a488;
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Telegraf', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
    background: var(--white);
    font-size: 15px;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* === NAVIGATION (Mesoestetic Style) === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #E8E8DF;
    border-bottom: 1px solid #d5d5cc;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-link img {
    height: 50px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    color: var(--dark-grey);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.btn-book {
    background: var(--black);
    color: var(--white);
    padding: 10px 20px 10px 50px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.btn-book::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('../images/GBY_PNG_-_Dark_Sand.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-book:hover {
    background: var(--gold);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E8E8DF;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 2rem 3%;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-menu {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #ddd;
}

.mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.mobile-book {
    margin-top: 2rem;
}

/* === LAYOUT === */
main {
    margin-top: 70px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

section {
    padding: 40px 3%;
}

/* === TYPOGRAPHY (Mesoestetic Style) === */
h1, h2, h3, h4 {
    font-family: 'Atteron', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--mid-grey);
    line-height: 1.7;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold);
}

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

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* === HERO SECTION (Mesoestetic Style) === */
.hero {
    background: var(--white);
    padding: 60px 3% 40px;
    text-align: center;
}

.hero h1 {
    animation: fadeIn 0.8s ease-out;
    font-weight: 300;
}

.hero p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeIn 0.8s ease-out 0.2s both;
    color: var(--mid-grey);
}

/* === CARDS (Mesoestetic Style) === */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    padding: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 18px;
}

.card-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* === GALLERY (Instagram Grid) === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* === SOCIAL FLOAT === */
.social-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-float a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-float a:hover {
    transform: scale(1.1);
}

.social-whatsapp {
    background: #25D366;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-tiktok {
    background: #000;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px;
    }
    
    .logo-link img {
        height: 45px;
    }
    
    .mobile-nav {
        top: 60px;
    }
    
    main {
        margin-top: 60px;
    }
    
    section {
        padding: 40px 3%;
    }
    
    .hero {
        padding: 60px 3% 50px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
}

/* Contact Page Tight Spacing */
body.contact-page .hero {
    padding: 3rem 0 2rem !important;
}

body.contact-page .container {
    padding: 2rem 5% !important;
}

body.contact-page section + section {
    margin-top: 2rem !important;
}

body.contact-page .card {
    padding: 1.5rem !important;
}

body.contact-page .card-grid {
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
}

body.contact-page h2 {
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
}

body.contact-page .faq-item {
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
}
/* EMERGENCY FIXES FOR WEBSITE */

/* 1. Make Book Now button smaller and inline */
.btn-book {
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* 2. Reduce ALL whitespace drastically */
section {
    padding: 25px 3%;
}

.hero {
    padding: 40px 3% 25px;
}

.card {
    padding: 15px;
}

.card-grid {
    gap: 15px;
    margin-top: 20px;
}

h2 {
    margin-bottom: 15px;
}

/* 3. Make Mesoestetic logo visible with background */
img[src*="mesoestetic"] {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

/* 4. Contact page - bring everything up */
body.contact-page .hero {
    padding: 30px 3% 20px !important;
}

body.contact-page section {
    padding: 20px 3% !important;
}

body.contact-page .card-grid {
    gap: 15px !important;
    margin-top: 15px !important;
}

/* 5. Location page - tighter */
.location-page section {
    padding: 20px 3%;
}

