:root {
    --color-primary: #d5c4b7;
    --color-secondary: #f7f3f0;
    --color-accent: #b49b8a;
    --color-text: #4a4a4a;
    --color-light: #ffffff;
    --color-background: #faf8f6;
    --header-height: 100px;
    --header-height-scrolled: 70px;
    --font-heading: 'Cormorant Garamond', serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-background);
}

/* Header & Navigation */
.header-container {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    height: var(--header-height);
    padding-bottom: 0;
    backdrop-filter: blur(8px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    height: var(--header-height-scrolled);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.main-nav {
    height: var(--header-height);
    background: transparent;
    max-width: 80%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.header-container.scrolled .main-nav {
    height: var(--header-height-scrolled);
    max-width: 100%;
    padding: 0 5%;
}

.header-line {
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto;
    margin-top: -1px;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    opacity: 0.3;
}

.header-container.scrolled .header-line {
    opacity: 0;
    transform: scaleX(0);
}

/* Logo styles */
.logo {
    height: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 130%;  /* Changed from 80% to 100% */
    width: auto;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .logo {
        height: 130%;  /* Increased mobile height */
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 3px;
    animation: fadeInDown 0.5s ease-out both;
}

.nav-links li:nth-child(1) a { animation-delay: 0.1s; }
.nav-links li:nth-child(2) a { animation-delay: 0.2s; }
.nav-links li:nth-child(3) a { animation-delay: 0.3s; }
.nav-links li:nth-child(4) a { animation-delay: 0.4s; }

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
}

@media (max-width: 768px) {
    .main-nav {
        justify-content: center;
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        padding: 0;
        margin: 0;
        flex-direction: column;
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
        z-index: 1000;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    body.menu-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 20px 30px;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        color: var(--color-text);
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        background: none;
    }

    .nav-overlay {
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(3px);
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .nav-overlay {
        display: block;
        opacity: 1;
    }

    body.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    body.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    .header-container.scrolled .nav-links {
        top: 100%;
        padding-top: 0;
    }

    .header-container.scrolled .nav-links {
        padding-top: var(--header-height-scrolled);
    }
}

/* Hero Section */
.hero {
    height: 75vh;  /* Changed from 100vh to 75vh */
    position: relative;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-background) 100%);
    margin-bottom: 30px; /* Reduced from 50px */
}

.heroSwiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s linear;
    animation: fadeIn 2s ease-out;
}

.swiper-slide-active .slide-img {
    transform: scale(1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(213,196,183,0.1) 0%, transparent 70%);
}

.hero-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    color: var(--color-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding-bottom: 2rem; /* Added to lift content slightly up */
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero h2 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: var(--color-primary);
    color: var(--color-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: none;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Section Separator */
.section-separator {
    position: relative;
    height: 80px; /* Increased from 50px */
    margin: -30px 0 0; /* Changed from -30px 0 30px */
    z-index: 2;
    animation: fadeIn 1s ease-out 0.8s both;
}

.section-separator::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scaleX(0);
    width: 90%; /* Increased from 80% */
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    animation: expandLine 1.2s ease-out 1s forwards;
}

.section-separator::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px; /* Increased from 50px */
    height: 60px; /* Increased from 50px */
    background: var(--color-background);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: expandCircle 0.8s ease-out 1.2s forwards;
}

@keyframes expandLine {
    from {
        transform: translate(-50%, -50%) scaleX(0);
    }
    to {
        transform: translate(-50%, -50%) scaleX(1);
    }
}

@keyframes expandCircle {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}

/* About Section */
.about-section {
    padding: 100px 0; /* Adjusted padding for consistency */
    background-color: var(--color-secondary); /* Match the section background to the theme */
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border for separation */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.about-flex {
    display: flex; /* Align items horizontally */
    align-items: center; /* Vertically center the content */
    justify-content: flex-start; /* Align items to the left */
    gap: 2rem; /* Add spacing between the image and text */
}

.about-image {
    flex: 0 0 40%; /* Image takes up 40% of the container */
    max-width: 40%; /* Limit the image width */
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-section .about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.about-section .about-image {
    flex: 0 0 40%;
    max-height: 50vh;
}

.about-section .image-wrapper {
    width: 100%;
    height: 100%;
}

.about-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-text {
    flex: 1; /* Text takes up the remaining space */
    text-align: left; /* Align text to the left */
    padding: 0 1rem; /* Add padding for spacing */
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary); /* Use primary color for headings */
    margin-bottom: 0.5rem;
}

.about-text h3 {
    font-family: 'Pinyon Script', cursive;
    font-size: 2rem;
    font-weight: normal;
    color: var(--color-accent); /* Accent color for the handwritten font */
    margin-bottom: 1.5rem;
}

.about-description {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8); /* Light background for contrast */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
    text-align: justify; /* Justify text for better readability */
}

.about-description .intro {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-primary); /* Primary color for the intro text */
    text-align: center;
    margin-bottom: 1.5rem;
}

.text-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-block {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text); /* Standard text color */
    position: relative;
    padding-left: 1.5rem;
}

.text-block::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 1.5rem;
    color: var(--color-accent); /* Accent color for bullet points */
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .about-flex {
        flex-direction: column; /* Stack image and text on smaller screens */
        align-items: center; /* Center items horizontally */
    }

    .about-image {
        max-width: 80%; /* Allow image to take more width on smaller screens */
    }

    .about-text {
        text-align: center; /* Center text on smaller screens */
    }
}

@media (max-width: 1024px) {
    .about-flex {
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .about-description {
        margin: 0 auto;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text h3 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .about-description .intro {
        font-size: 1.2rem;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--color-primary);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 20px;
    background-color: var(--color-background);
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-intro p {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
}

.gallery-intro h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-top: 15px;
    color: var(--color-text);
}

.gallery-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 auto 50px;
    max-width: 1200px;
}

.category-btn {
    flex: 1 1 300px;
    min-width: 250px;
    padding: 15px 25px;
    background: none;
    border: 1px solid rgba(212, 182, 166, 0.3);
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    line-height: 1.4;
}

.category-btn:hover,
.category-btn.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: rgba(212, 182, 166, 0.05);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-grid {
    columns: 3;
    column-gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gallery-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.gallery-category {
    display: none;
}

.gallery-category.active {
    display: block;
}

/* New Gallery Styles */
.folders-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.folder {
    background: rgba(212, 182, 166, 0.1);
    padding: 40px 30px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.folder:hover {
    background: rgba(212, 182, 166, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .folders-view {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.images-view {
    padding: 20px;
}

.back-to-folders {
    background: none;
    border: none;
    font-family: var(--font-body);
    color: var(--color-text);
    cursor: pointer;
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.back-to-folders:hover {
    opacity: 1;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text);
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .images-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
}

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

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

@media (max-width: 1200px) {
    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        columns: 1;
    }
    
    .gallery-intro h3 {
        font-size: 2rem;
    }
    
    .category-btn {
        flex: 1 1 100%;
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .folders-view {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 0;
    }
}

/* Fancybox customization */
.fancybox__backdrop {
    background: rgba(24, 24, 27, .95);
}

.fancybox__content {
    padding: 0;
    max-width: 85%;
    max-height: 85vh;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-secondary);
    color: var(--color-text);
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0; /* Reduced from 100px */
    background-color: var(--color-background);
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-group {
    margin-bottom: 40px; /* Reduced from 60px */
}

.pricing-items {
    display: grid;
    gap: 15px; /* Reduced from 20px */
}

.pricing-item {
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.pricing-correction {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(212, 182, 166, 0.3);
}

.pricing-correction h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
    opacity: 0.8;
}

.pricing-correction .price {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-text);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
}

.pricing-separator {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    margin: 30px 0; /* Reduced from 50px */
    opacity: 0.3;
}

.pmu-group {
    margin-top: 60px;
}

.pmu-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-text);
}

.with-correction {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.with-correction > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.correction {
    padding-top: 10px;
    border-top: 1px dashed rgba(212, 182, 166, 0.3);
}

.correction h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
    opacity: 0.8;
}

.btn-contact {
    display: block;
    width: fit-content;
    margin: 60px auto 0;
    padding: 1.2rem 3.5rem;
    background-color: var(--color-primary);
    color: var(--color-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .pricing-item {
        padding: 12px 20px;
    }

    .pricing-item h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.2rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: var(--color-background);
    position: relative;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.review-content {
    position: relative;
    z-index: 1;
}

.quote-mark {
    position: absolute;
    top: -30px;
    left: -10px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.2;
}

.review-content p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-text);
}

.author {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-primary);
    text-align: right;
}

.reviews-carousel {
    max-width: 600px;
    margin: 0 auto 60px;
    display: none;
}

.reviewsSwiper {
    padding: 20px 0 40px;
}

.reviewsSwiper .swiper-pagination {
    bottom: 0;
}

.reviewsSwiper .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.3;
}

.reviewsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        display: none;
    }
    
    .reviews-carousel {
        display: block;
    }
    
    .review-card {
        padding: 30px 25px;
    }
}

/* Permanentní Make-Up Section */
.pmu-section {
    padding: 80px 0;
    background: var(--color-background);
}

.pmu-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pmu-services {
    margin-bottom: 60px;
}

.service-item {
    background: rgba(255,255,255,0.5);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-item h3 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-section {
    background: rgba(255,255,255,0.5);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 3px;
}

.info-section h3 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.info-section ul, .info-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.info-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.care-section ol {
    counter-reset: care-steps;
}

.care-section ol li {
    counter-increment: care-steps;
    padding-left: 35px;
    position: relative;
}

.care-section ol li::before {
    content: counter(care-steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .pmu-section {
        padding: 40px 0;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .service-item h3 {
        font-size: 1.4rem;
    }
    
    .info-section {
        padding: 20px;
    }
    
    .info-section h3 {
        font-size: 1.3rem;
    }
}

/* PMU Section Styles */
.pmu-section {
    padding: 80px 0;
    background: var(--color-background);
}

.pmu-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-cards {
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-block {
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 3px;
}

.info-block h3 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.info-block ul, 
.info-block ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.info-block li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-block p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.care-section ol {
    counter-reset: care-steps;
}

.care-section ol li {
    counter-increment: care-steps;
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
}

.care-section ol li::before {
    content: counter(care-steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-card,
    .info-block {
        padding: 25px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .info-block h3 {
        font-size: 1.3rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--color-background);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    height: fit-content;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 5px;
}

.contact-detail a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--color-primary);
}

.contact-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    font-family: var(--font-heading);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(212, 182, 166, 0.3);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-light);
}

.submit-btn {
    background-color: var(--color-primary);
    color: var(--color-light);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-details {
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--color-light);
    font-size: 1.8rem;
}
.social-link-about {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 30%;
    transition: all 0.3s ease;
    color: var(--color-light);
    font-size: 0.5rem;
}
.social-link-about:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.social-link:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about-section .social-link i {
    font-size: 10px; /* Nastavte požadovanou velikost ikon */
    margin: 5 5px;   /* Přizpůsobte mezery mezi ikonami */
}
.fa-instagram {
    font-size: 2rem;
}

.fa-facebook {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .btn-primary {
        padding: 1rem 2.5rem;
    }

    .container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content h3 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .about-image {
        margin-top: 20px;
    }

    .image-background {
        bottom: -20px;
        left: -20px;
        right: 20px;
        top: 20px;
    }

    .text-blocks {
        gap: 20px;
    }
    
    .text-block {
        padding-left: 15px;
    }
    
    .about-text .intro {
        font-size: 1.1rem;
    }

    .gallery-categories {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

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

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Initial Load Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
