/* Main CSS file for PMU Academy Ivona Belianská */

/* Global Typography and Color Variables */
:root {
    /* Hlavné farby */
    --primary-color: #D4AF37; /* Zlatá */
    --secondary-color: #F5D0D0; /* Pastelovo ružová */
    --dark-color: #2a1f18; /* Capučínová tmavá */
    --light-color: #FFFFFF; /* Biela */
    --accent-color: #F7C1CC; /* Svetlejšia ružová */
    
    /* Text colors */
    --text-dark: #333333;
    --text-muted: #666666;
    --text-light: #F8F9FA;
    
    /* Paddings */
    --section-padding: 80px 0;
    --container-padding: 30px;
    
    /* Border radius */
    --border-radius-sm: 3px;
    --border-radius-md: 5px;
    --border-radius-lg: 10px;
    
    /* Box shadows */
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Raleway', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Pacifico', cursive;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Base Typography */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

/* Form styling */
.form-control {
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius-sm);
    padding: 12px 15px;
    height: auto;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Vylepšenie formulárov - intuitívnejší vzhľad */
.form-label {
    font-weight: 500; 
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: var(--font-subheading);
}

.form-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Vylepšenie vzhľadu placeholder textu */
::placeholder {
    color: #aaa;
    opacity: 1;
}

/* Animácia pre fókus na inputoch */
.form-control:focus {
    transition: box-shadow 0.3s ease;
}

/* Zvýraznenie aktívnych polí formulára */
.input-highlight {
    position: relative;
}

.input-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 0 2px var(--primary-color);
    opacity: 0;
    animation: highlight-pulse 1.5s infinite;
    pointer-events: none;
}

@keyframes highlight-pulse {
    0% { opacity: 0.2; box-shadow: 0 0 0 2px var(--primary-color); }
    50% { opacity: 0.5; box-shadow: 0 0 0 4px var(--primary-color); }
    100% { opacity: 0.2; box-shadow: 0 0 0 2px var(--primary-color); }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
    color: var(--dark-color);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Sticky Navigation */
.navbar-sticky {
    background-color: rgba(42, 31, 24, 0.98) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

/* Vylepšenia pre navigáciu */
.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    background-color: rgba(42, 31, 24, 0.95);
}

.navbar.scrolled {
    background-color: rgba(42, 31, 24, 0.98);
}

.navbar.navbar-dark {
    background-color: rgba(42, 31, 24, 0.95);
}

/* Tlačidlá na scrollovanie */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.16);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.5s ease;
}

.back-to-top:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.scroll-down {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.16);
}

.scroll-down.show {
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.5s ease;
}

.scroll-down:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Flexibilné zobrazenie navigácie */
.navbar-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    position: relative;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    z-index: 1;
    color: #FFFFFF !important;
}

/* Efekt podčiarknutia pre navigačné odkazy */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFFFFF;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Zvýraznenie aktívneho odkazu */
.navbar-nav .nav-link.active {
    color: #FFFFFF !important;
    font-weight: 600;
}

/* Mobilná navigácia - hamburger menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    transform: scale(1.1);
}

/* Vlastný hamburger icon */
.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 24px;
    height: 20px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    top: 9px;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responzívne úpravy pre navigáciu */
@media (max-width: 767.98px) {
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .navbar-collapse {
        background-color: rgba(42, 31, 24, 0.95);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        z-index: 5;
    }
    
    .navbar-nav .nav-item {
        opacity: 1;
        transform: none;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        color: #ffffff !important;
        text-align: center;
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link:hover {
        padding-left: 15px;
        color: var(--primary-color) !important;
        background-color: rgba(212, 175, 55, 0.1);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    /* Oprava pre stránku rezervácie na mobiloch */
    body.rezervacia-page #mainNav {
        position: absolute !important;
        max-height: 65px;
        overflow: hidden;
    }
    
    body.rezervacia-page #mainNav.show-menu {
        max-height: none;
        overflow: visible;
    }
}

/* Vylepšenie responzívnosti formulárov pre mobilné zariadenia */
@media (max-width: 767px) {
    .form-container, .reservation-form {
        padding: 1.5rem;
    }
    
    /* Mobilný pohľad na rezervačný formulár */
    .booking-step-label {
        font-size: 0.8rem;
    }
    
    .booking-step-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .booking-progress-line {
        width: 30px;
    }
    
    /* Úprava veľkosti sekčných nadpisov pre mobilné zariadenia */
    h2.section-title {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Zvýšenie veľkosti dotykových plôch pre mobilné zariadenia */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-control {
        min-height: 46px;
    }
    
    /* Lepšie využitie priestoru na malých obrazovkách */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col, [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Odsadenie sekcií pre lepšiu čitateľnosť */
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    /* Optimalizácia veľkosti textu pre lepšiu čitateľnosť */
    body {
        font-size: 16px;
    }
    
    /* Vylepšené navigácia pre "späť na vrch" tlačidlo */
    .back-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
        right: 15px;
        bottom: 15px;
    }
}

/* Style Recommendation System Styles */
.style-recommendation-section {
    padding: 80px 0;
    background-color: #fff;
}

.recommendation-container {
    margin-top: 40px;
}

.recommendation-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.recommendation-form-container h3 {
    margin-bottom: 25px;
    color: #000000;
    position: relative;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.recommendation-form-container h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #D4AF37;
}

.luxurious-form .form-group {
    margin-bottom: 20px;
}

.luxurious-form label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.luxurious-form .form-control {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 12px 15px;
    height: auto;
    font-size: 15px;
    transition: all 0.3s ease;
}

.luxurious-form .form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.luxurious-button {
    background-color: #D4AF37;
    border: none;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxurious-button:hover {
    background-color: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

.info-container {
    background-color: #f9f7f2;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
}

.info-container h3 {
    margin-bottom: 25px;
    color: #000000;
    position: relative;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.info-container h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #D4AF37;
}

.benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    margin-bottom: 25px;
}

.benefit-icon {
    min-width: 50px;
    height: 50px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.benefit-text h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    color: #333;
}

.benefit-text p {
    color: #666;
    margin-bottom: 0;
}

.testimonial {
    margin-top: 40px;
    padding: 25px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial:before {
    content: '❝';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 50px;
    color: #D4AF37;
    opacity: 0.2;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author p {
    font-weight: 600;
    color: #333;
    text-align: right;
}

.recommendation-result-section {
    background-color: #f8f7f4;
    padding: 70px 0;
}

.recommendation-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.recommendation-header {
    background-color: #2a1f18;
    color: white;
    padding: 20px 30px;
    border-bottom: 3px solid #D4AF37;
}

.recommendation-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
}

.recommendation-body {
    padding: 30px;
    color: #333;
    line-height: 1.7;
}

.recommendation-body h4 {
    color: #000000;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.recommendation-body ul {
    padding-left: 20px;
}

.recommendation-body li {
    margin-bottom: 10px;
}

.recommendation-footer {
    background-color: #f9f7f2;
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.recommendation-footer p:last-child {
    margin-bottom: 15px;
}

/* Gold animation for input focus */
@keyframes gold-pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Eyebrow Drawing Tool Styles */
.brow-trainer-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.canvas-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
}

/* High Contrast Mode */
.high-contrast .canvas-container,
.high-contrast .drawing-area {
    background-color: #2a1f18 !important;
    border: 2px solid #fff !important;
}

.high-contrast .brow-template,
.high-contrast #template-image {
    filter: invert(1);
    opacity: 0.9;
    background-color: rgba(0, 0, 0, 0.1);
}

.high-contrast #timer-container {
    color: #fff;
    background-color: #2a1f18;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.high-contrast .brow-controls,
.high-contrast .controls {
    background-color: #222 !important;
    padding: 10px;
    border-radius: 4px;
    color: #fff !important;
}

.high-contrast .color-option.active {
    border-color: #ffff00 !important;
}

.color-option.active {
    border-color: #D4AF37;
    box-shadow: 0 0 5px 2px rgba(212, 175, 55, 0.7);
}

.controls {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.drawing-area {
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
    background-color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.high-contrast-mode .brow-controls label {
    color: #fff;
}

.high-contrast-mode .brow-trainer-container {
    background-color: #2a1f18;
    padding: 15px;
    color: #fff;
}

.brow-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: transparent;
    cursor: crosshair;
    width: 100%;
    height: 100%;
}

#template-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brow-template {
    opacity: 0.8;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
}

.brow-controls {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.brow-controls .form-group {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.brow-controls label {
    margin-right: 10px;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

.form-control-range {
    width: 100px;
}

#timer-container {
    font-size: 1.1rem;
    font-weight: 500;
    color: #D4AF37;
    text-align: right;
}

/* Hero Section Styling */
.hero-slogan {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Logo styling */
.hero-logo-watermark {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Alternative white.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    opacity: 0.03;
    z-index: 1;
}

.hero-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.7));
}

.hero-main-logo {
    animation: logoEntrance 2.5s ease-out forwards, logoPulse 4s ease-in-out 3s infinite;
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0));
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.35));
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    }
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0.7;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.03));
        transform: scale(1);
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 80px rgba(212, 175, 55, 0.2));
        transform: scale(1.015);
    }
}

.section-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    opacity: 0.12;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.section-logo:hover {
    opacity: 0.25;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 1rem;
}

/* Gallery styling */
.gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 31, 24, 0.7);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    height: 30%;
}

.gallery-caption {
    color: white;
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
    font-weight: 500;
}

:root {
    --primary-color: #D4AF37;
    --secondary-color: #F7C1CC;
    --dark-color: #000000;
    --light-color: #fff;
    --faded-color: #f9f9f9;
    --luxury-accent: rgba(212, 175, 55, 0.85);
    --luxury-gradient: linear-gradient(135deg, #D4AF37 0%, #F7E8AF 50%, #D4AF37 100%);
}

.bg-faded {
    background-color: var(--faded-color);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #c9a633;
    border-color: #c9a633;
    color: var(--dark-color);
}

.btn-outline-gold {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    border-width: 2px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Navbar styling */
#mainNav {
    background-color: transparent;
    transition: all 0.3s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#mainNav.navbar-scrolled {
    background-color: var(--dark-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-logo {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-logo {
    height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--primary-color);
}

.btn-nav-reservation {
    background-color: var(--primary-color);
    color: var(--dark-color) !important;
    font-weight: 500 !important;
    border-radius: 0;
    padding: 0.5rem 1.5rem !important;
    margin-left: 0.5rem;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.btn-nav-reservation:hover {
    background-color: #c9a633;
    color: var(--dark-color) !important;
}

/* Hero section */
.hero-section {
    background-color: #2a1f18;
    color: var(--light-color);
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-image: none;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .hero-intro {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-left: 0 !important;
    }
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    max-width: 100%;
}

.hero-services-list, .category-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.hero-services-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--light-color);
}

.category-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-align: left;
}

.category-list.compact li {
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.hero-services-list li:before, .category-list li:before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-category {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.service-category:hover {
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.category-title {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 0.3rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-color);
    display: inline-block;
}

.hero-brand {
    margin-bottom: 0;
    margin-top: 0;
}

.modern-quote {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

.elegant-quote::before,
.elegant-quote::after,
.modern-quote::before,
.modern-quote::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 60px;
    background-color: var(--primary-color);
    top: 50%;
}

.elegant-quote::before {
    left: -70px;
}

.elegant-quote::after {
    right: -70px;
}

.premium-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 40px;
    background: var(--luxury-gradient);
    top: 50%;
}

.hero-tagline::before {
    left: -60px;
}

.hero-tagline::after {
    right: -60px;
}

.hero-content-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1rem;
    z-index: 1;
}

.hero-section {
    position: relative;
    background-image: none;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: #2a1f18;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

.hide-on-load {
    display: none !important;
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    padding: 0 20px;
}

.quote-text {
    position: relative;
    display: inline-block;
}

.quote-text::before,
.quote-text::after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: var(--primary-color);
    width: 50px;
    top: 50%;
}

.quote-text::before {
    left: -70px;
}

.quote-text::after {
    right: -70px;
}

.elegant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.elegant-divider span {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 10px;
}

.elegant-divider::before,
.elegant-divider::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    max-width: 100px;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-color);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-down-indicator a {
    color: var(--light-color);
}

.scroll-down-indicator:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(to right, #D4AF37, #FFD700, #FFF8DC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    line-height: 1.1;
    font-style: italic;
}

.artist-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    color: #D4AF37;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.artist-signature {
    font-family: 'Pacifico', cursive, 'Brush Script MT', cursive;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1.2rem;
    line-height: 1;
    font-weight: 400;
    transform: rotate(-5deg);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    display: inline-block;
    position: relative;
}

@media (max-width: 768px) {
    .artist-name {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }
    
    .artist-title {
        font-size: 1.2rem;
    }
    
    .hero-section {
        background-size: 100%;
        background-position: center 30%;
    }
}

.hero-service-group {
    margin-bottom: 1.5rem;
}

.hero-service-title, .service-section-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-sections-container {
    background-color: rgba(42, 31, 24, 0.6);
    padding: 2rem;
    border-radius: 0;
    position: relative;
}

.service-section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary-color);
}

.service-item {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.service-list-right .service-item {
    justify-content: flex-end;
}

.service-list-left .service-item {
    justify-content: flex-start;
}

.service-diamond {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0 0.5rem;
}

/* Section styling */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
}

.modern-section-title {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    color: var(--primary-color);
}

/* Services */
.service-card {
    background-color: #fff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #D4AF37, #F7C1CC);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    background-color: #fff;
    padding: 1.25rem;
}

.service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: #6c757d;
    font-size: 0.9rem;
}

.service-details {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Technique list styling */
.technique-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.technique-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.technique-list li:before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1;
}

.technique-card {
    border-radius: 5px;
    transition: all 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 2rem;
}

.service-card .service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-section {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 5rem 0;
    position: relative;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0;
    padding: 2rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact section */
.contact-form {
    background-color: #f8f8f8;
    padding: 3rem;
}

.contact-form .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 0.8rem 1.2rem;
}

.contact-info {
    padding: 3rem;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #2a1f18;
    color: var(--light-color);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.footer-links a {
    color: var(--light-color);
    margin-right: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.back-to-top:hover {
    background-color: #c9a633;
    color: var(--dark-color);
}

/* Reservation page */
.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f8f8f8;
}

.reservation-form .form-control,
.reservation-form .form-select {
    border-radius: 0;
    padding: 0.8rem 1.2rem;
}

.reservation-confirm {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-details {
    background-color: #f8f8f8;
    padding: 3rem;
    border-left: 5px solid var(--primary-color);
}

/* Admin panel */
.admin-panel {
    background-color: #fff;
}

.status-nova {
    background-color: #17a2b8;
}

.status-potvrdená {
    background-color: #28a745;
}

.status-zrušená {
    background-color: #dc3545;
}

.status-dokončená {
    background-color: #6c757d;
}

/* Responsive styles */
@media (max-width: 767.98px) {
    .btn-nav-reservation {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .service-card {
        margin-bottom: 2rem;
    }
    
    .contact-form, .contact-info {
        padding: 2rem;
    }
    
    .hero-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .artist-name {
        font-size: 2.5rem;
    }
    
    .hero-description, .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-services-list li {
        font-size: 0.85rem;
    }
    
    .service-sections-container {
        padding: 1.5rem 1rem;
    }
    
    .service-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .service-item {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .col-md-6.text-end, .col-md-6.text-start {
        text-align: center !important;
        margin-bottom: 1.5rem;
    }
    
    .service-list-right .service-item, .service-list-left .service-item {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Tablet-specific styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .artist-name {
        font-size: 3.5rem;
    }
    
    .artist-title {
        font-size: 1.3rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .hero-service-group {
        margin-bottom: 1rem;
    }
    
    .hero-services-container {
        padding: 1.5rem;
    }
    
    .service-sections-container {
        padding: 1.5rem;
    }
    
    .service-item {
        font-size: 0.9rem;
    }
    
    .service-card {
        height: auto;
    }
    
    .service-image {
        height: 180px;
    }
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.achievement-list li::before {
    content: "✓";
    color: var(--gold-primary);
    font-weight: bold;
    margin-right: 10px;
}

.trophy-list {
    list-style: none;
    padding: 0;
}

.trophy-list li {
    padding: 8px 0;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.trophy-icon {
    margin-right: 8px;
}

.achievement-quote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--gold-primary);
    margin-top: 20px;
}