/* 
==========================================
CSS for Andriana Delcheva - Massage & Beauty Website
Modern elegant design with refined typography and box layouts
==========================================
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --primary-black: #000000;
    --primary-white: #ffffff;
    --light-gray: #f8f8f8;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-color: #212121;
    --accent-color: #d4af37; /* Gold accent */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    
    /* Typography Variables */
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Spacing Variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-white);
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-black);
    letter-spacing: 0.05em;
    word-wrap: break-word;
}

h1 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--accent-color);
}

h3 {
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

p {
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

a {
    color: var(--primary-black);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.hero .btn {
    position: relative;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: var(--dark-gray);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.section-description {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 300;
    line-height: 1.8;
}

/* Header Styles */
header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: var(--spacing-md) var(--spacing-md); /* Increased top/bottom padding */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    max-height: 120px; /* Increased from 100px */
}

.logo-container {
    display: none; /* Hide the logo container */
}

nav {
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 1rem; /* Increased from 0.5rem for better spacing */
}

nav ul li a {
    color: var(--primary-white);
    font-size: 1rem; /* Increased from 0.8rem */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0; /* Increased from 0.25rem for better touch target */
    position: relative;
    font-weight: 300;
    white-space: nowrap;
}

nav ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-white);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

/* This is the only mobile-specific rule we'll keep */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 0.8rem !important; /* Increased padding */
        max-height: 100px !important; /* Increased from 80px */
        height: auto !important;
    }
    
    .logo {
        max-height: 45px !important; /* Increased from 38px */
    }
    
    nav ul li {
        margin: 0 0.6rem !important; /* Increased from 0.3rem */
    }
    
    nav ul li a {
        font-size: 0.85rem !important; /* Increased from 0.7rem */
        letter-spacing: 0.05em !important;
        padding: 0.4rem 0 !important; /* Added for better touch target */
    }
    
    .hero {
        margin-top: 100px !important; /* Updated to match new header height */
    }
}

@media (max-width: 576px) {
    /* Force mobile header styles */
    header {
        padding: 0.7rem 0.6rem !important; /* Increased padding */
        max-height: 90px !important; /* Increased from 70px */
        display: flex !important;
        justify-content: center !important; /* Center the nav on small screens */
    }
    
    .logo {
        max-height: 38px !important; /* Increased from 32px */
    }
    
    nav ul {
        justify-content: center !important; /* Center the nav items */
        width: 100% !important;
    }
    
    nav ul li {
        margin: 0 0.5rem !important; /* Better spacing */
    }
    
    nav ul li a {
        font-size: 0.75rem !important; /* Increased from 0.65rem */
        padding: 0.35rem 0 !important; /* Added for better touch target */
    }
    
    .hero {
        margin-top: 90px !important; /* Match the new header height */
    }
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--light-gray);
    color: var(--primary-black);
    position: relative;
    margin-top: 120px; /* Match the new header max-height */
    box-shadow: var(--box-shadow);
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 100px !important; /* Updated to match new header height */
    }
}

@media (max-width: 576px) {
    .hero {
        margin-top: 90px !important; /* Match the new header height */
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-logo {
    max-width: 100%;
    height: auto;
    width: 1080px; /* 20% larger than the current 900px */
    margin: 0 auto;
    display: block;
    transform: translateX(30px); /* Move it a bit to the right for better centering */
}

.logo-signature-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.professional-titles {
    margin-top: var(--spacing-md);
    color: var(--accent-color);
    font-family: var(--heading-font);
    text-align: center;
    line-height: 1.6;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.signature-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #b6a371; /* Slightly muted gold to match image */
    font-style: italic;
    vertical-align: middle;
    display: inline-block;
    margin-left: 10px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .signature-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .signature-text {
        font-size: 1.8rem;
    }
}

.signature-img {
    height: 90px; /* Increased from 60px to 90px (150% bigger) */
    vertical-align: middle;
    margin-left: 0; /* Removed left margin since it's not next to text anymore */
    display: block; /* Changed from inline-block to block */
    margin: 0 auto; /* Center the image */
}

@media (max-width: 768px) {
    .signature-img {
        height: 75px; /* Increased from 50px to 75px (150% bigger) */
    }
}

@media (max-width: 480px) {
    .signature-img {
        height: 60px; /* Increased from 40px to 60px (150% bigger) */
    }
}

/* Services Section */
.services {
    background-color: var(--light-gray);
    padding: var(--spacing-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.service-card {
    background-color: var(--primary-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
}

/* Gallery Section */
.gallery {
    background-color: var(--primary-white);
    padding: var(--spacing-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Pricing Section */
.pricing {
    background-color: var(--light-gray);
    padding: var(--spacing-xl) 0;
}

.pricing-container {
    background-color: var(--primary-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.pricing-section {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    position: relative;
    border-bottom: 1px solid var(--medium-gray);
}

.pricing-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-section h3 {
    margin-bottom: var(--spacing-md);
    display: inline-block;
    font-weight: 500;
    position: relative;
    color: var(--primary-black);
    font-size: 1.4rem;
}

.pricing-section h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-black);
    letter-spacing: 0.05em;
    font-weight: 400;
}

.pricing-section > p {
    margin-bottom: var(--spacing-sm);
    color: var(--dark-gray);
    font-weight: 300;
    line-height: 1.7;
    max-width: 800px;
}

.service-item {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: none;
}

.service-details {
    flex: 1;
}

.service-details p {
    color: var(--dark-gray);
    margin-top: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-price {
    margin-top: var(--spacing-xs);
    font-weight: 400;
    text-align: left;
}

.service-price p {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', serif;
}

.service-price p span {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-left: 5px;
}

.service-price p + p {
    margin-top: 5px;
}

.pricing-divider {
    height: 1px;
    background-color: var(--medium-gray);
    margin: var(--spacing-md) 0;
    opacity: 0.7;
    display: none; /* Hide the dividers */
}

/* Contact Section */
.contact {
    background-color: var(--primary-white);
    padding: var(--spacing-xl) 0;
}

.contact-info-centered {
    text-align: center;
    margin: var(--spacing-md) auto;
    max-width: 600px;
    padding: var(--spacing-md);
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.contact-info-centered h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-black);
    font-weight: 500;
}

.contact-info-centered p {
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-info-centered strong {
    font-weight: 500;
    color: var(--primary-black);
}

/* Footer */
footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: var(--spacing-md) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.logo-small {
    max-height: 60px;
}

.footer-info {
    margin-bottom: var(--spacing-sm);
}

.footer-info p {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-social a {
    margin: 0 var(--spacing-xs);
    color: var(--primary-white);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.accent {
    color: var(--accent-color);
}

.separator {
    width: 100%;
    text-align: center;
    margin: 20px auto 30px;
    position: relative;
}

.separator.centered {
    margin: 20px auto 30px;
    max-width: 200px;
}

.separator.small {
    margin: 15px auto 20px;
    max-width: 50px;
}

.separator span {
    height: 1px;
    width: 60px;
    background-color: var(--accent-color);
    display: block;
    margin: 0 auto;
}

.separator.centered span {
    margin: 0 auto;
}

.icon-placeholder {
    width: 80px; /* Increased from 60px */
    height: 80px; /* Increased from 60px */
    border: 2px solid var(--accent-color); /* Thicker border */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.2) 100%); /* Add subtle gold gradient */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15), inset 0 0 15px rgba(255, 255, 255, 0.5); /* Add elegant shadow */
}

.icon-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.8);
    border-color: var(--accent-color);
}

/* Media Queries for Responsive Design */
@media (min-width: 576px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
    
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: var(--spacing-md);
    }
    
    .service-item {
        flex-direction: row;
        align-items: center;
    }
    
    .service-price {
        margin-top: 0;
        margin-left: var(--spacing-md);
        min-width: 150px;
        text-align: right;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Only make h4 elements slightly bolder but keep consistency */
.pricing-section h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-black);
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* Ensure br elements don't affect spacing */
.pricing-section br {
    line-height: 1.6;
}

/* Booking Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.modal-close:hover {
    background-color: #333;
}

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

/* Media queries for responsive modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        height: 95vh;
    }
}

/* Additional responsive text adjustments */
@media (max-width: 576px) {
    html {
        font-size: 90%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Force mobile header styles */
    header {
        padding: 0.4rem 0.6rem !important;
        max-height: 70px !important; /* Consistent with above */
    }
    
    .logo {
        max-height: 38px !important; /* Consistent with above */
    }
    
    nav ul li a {
        font-size: 0.75rem !important; /* Consistent with above */
    }
}

@media (max-width: 400px) {
    html {
        font-size: 85%;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

.owner-img {
    width: 100%;
    max-width: 300px; /* Reduced from 400px to make it smaller */
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
} 