/*
Theme Name: Ramona Beauty Concept
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Modern black & gold multi-purpose responsive WordPress theme with sticky menu
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ramonabeautyconcept
Tags: black, gold, responsive, sticky-menu, fast, mobile-optimized
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #f5deb3;
    --text-color: #ffffff;
    --bg-color: #000000;
    --header-bg-color: #000000;
    --footer-bg-color: #000000;
    --link-hover-color: #f5deb3;
    --header-height: 100px;
    --header-height-scrolled: 72px;
    --logo-width: 80px;
    --menu-font-size: 16px;
    --menu-letter-spacing: 1px;
    --container-width: 1200px;
    --base-font-size: 16px;
    --font-body: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    --font-headings: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    --font-menu: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    --font-button: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    --font-site-title: var(--font-headings);
    --font-tagline: var(--font-body);
    --site-title-size: 24px;
    --tagline-size: 14px;
    --front-overlay-opacity: 0.35;
    --button-radius: 30px;
    --button-border-width: 2px;
    --button-padding-y: 14px;
    --button-padding-x: 32px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: var(--base-font-size);
    line-height: 1.6;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10003;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.75);
    outline-offset: 3px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

body.layout-boxed .site-header,
body.layout-boxed .site-content,
body.layout-boxed .site-footer {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

body.layout-framed {
    padding: 14px;
}

body.layout-framed .site-header,
body.layout-framed .site-content,
body.layout-framed .site-footer {
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    overflow: hidden;
}

body.layout-framed .site-header {
    top: 14px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--link-hover-color);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-family: var(--font-headings);
    margin-bottom: 1rem;
}

/* Sticky Header */
.site-header {
    background-color: var(--header-bg-color);
    border-bottom: 1px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    transition: transform 0.25s ease, min-height 0.25s ease, background-color 0.25s ease;
}

.no-sticky-header .site-header {
    position: relative;
}

.sticky-effect-hide.header-hidden .site-header {
    transform: translateY(-120%);
}

.sticky-effect-shrink.header-scrolled .site-header {
    min-height: var(--header-height-scrolled);
}

.sticky-effect-shrink.header-scrolled .header-inner {
    min-height: var(--header-height-scrolled);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.transparent-header .site-header {
    background-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
}

@media (min-width: 769px) {
    .header-layout-centered .header-inner {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }

    .header-layout-centered .site-branding {
        justify-content: center;
    }

    .header-layout-centered .main-navigation {
        width: 100%;
    }

    .header-layout-centered .main-navigation ul {
        justify-content: center;
    }

    .header-layout-centered .social-icons {
        justify-content: center;
    }
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-logo-link img,
.custom-logo {
    max-width: var(--logo-width);
    height: auto;
}

.site-title-wrapper {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-size: var(--site-title-size);
    font-family: var(--font-site-title);
    font-weight: bold;
    margin: 0;
}

.site-description {
    font-size: var(--tagline-size);
    font-family: var(--font-tagline);
    margin: 0;
    opacity: 0.8;
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    font-weight: 500;
    font-family: var(--font-menu);
    font-size: var(--menu-font-size);
    letter-spacing: var(--menu-letter-spacing);
}

.nav-close {
    display: none;
}

.nav-overlay {
    display: none;
}

.menu-uppercase .main-navigation a {
    text-transform: uppercase;
}

.menu-no-uppercase .main-navigation a {
    text-transform: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none !important;
    background-color: transparent;
    border: 2px solid var(--primary-color) !important;
    padding: 10px 14px;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    color: var(--primary-color);
    font-size: 0;
    border-radius: 8px;
}

.menu-toggle .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle .hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-button {
    display: inline-block;
    padding: var(--button-padding-y) var(--button-padding-x);
    border: var(--button-border-width) solid var(--primary-color);
    border-radius: var(--button-radius);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    font-family: var(--font-button);
}

.hero-button:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.button-hover-glow .hero-button:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.button-hover-lift .hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.button-hover-fill .hero-button:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-category-card {
    display: block;
    color: inherit;
}

.service-category-card:hover {
    text-decoration: none;
}

.service-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-description {
    opacity: 0.8;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: var(--button-padding-y) var(--button-padding-x);
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: var(--button-border-width) solid var(--primary-color);
    border-radius: var(--button-radius);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: var(--font-button);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button-hover-glow .cta-button:hover {
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.button-hover-lift .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.2);
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.page-title {
    font-size: 3rem;
}

/* Services Page */
.services-page-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card-full {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-full:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.service-icon-large {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    opacity: 0.8;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-notice {
    margin: 0 0 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.08);
    color: var(--text-color);
}

.form-notice.error {
    border-color: rgba(255, 80, 80, 0.5);
    background: rgba(255, 80, 80, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-button {
    width: 100%;
    padding: var(--button-padding-y) var(--button-padding-x);
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: var(--button-border-width) solid var(--primary-color);
    border-radius: var(--button-radius);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-button);
}

.form-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button-hover-glow .form-button:hover {
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.button-hover-lift .form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.2);
}

/* Footer */
.site-footer {
    background-color: var(--footer-bg-color);
    border-top: 1px solid var(--primary-color);
    text-align: center;
    padding: 2rem;
}

.footer-widgets {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-widgets.columns-1 { grid-template-columns: 1fr; }
.footer-widgets.columns-2 { grid-template-columns: repeat(2, 1fr); }
.footer-widgets.columns-3 { grid-template-columns: repeat(3, 1fr); }
.footer-widgets.columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .footer-widgets.columns-3,
    .footer-widgets.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-widgets.columns-2,
    .footer-widgets.columns-3,
    .footer-widgets.columns-4 {
        grid-template-columns: 1fr;
    }
}

.widget {
    padding: 1rem;
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        justify-content: space-between !important;
    }
    
    .site-branding {
        flex: 1;
    }
    
    .main-navigation {
        flex: none !important;
        display: block !important;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(86vw, 360px);
        background-color: var(--header-bg-color);
        border-left: 1px solid rgba(212, 175, 55, 0.25);
        transform: translateX(110%);
        transition: transform 0.25s ease;
        z-index: 10001;
        padding: 4.2rem 1.5rem 1.5rem;
    }
    
    .main-navigation.toggled {
        transform: translateX(0);
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 0;
        gap: 1rem;
    }

    .main-navigation li {
        width: 100%;
    }

    .main-navigation a {
        display: block;
        padding: 0.9rem 0.75rem;
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(212, 175, 55, 0.35);
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.35);
        cursor: pointer;
    }

    .nav-close::before,
    .nav-close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 2px;
        background: var(--primary-color);
        transform-origin: center;
    }

    .nav-close::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .nav-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    
    .menu-toggle {
        display: block !important;
        z-index: 9999;
    }

    body.nav-open {
        overflow: hidden;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 10000;
    }

    body.nav-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .site-header .social-icons {
        display: none;
    }

    .show-social-mobile .site-header .social-icons {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .header-inner {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Single Post Styles */
.entry-header {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.entry-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.entry-meta {
    opacity: 0.8;
    font-size: 0.95rem;
}

.meta-sep {
    margin: 0 0.5rem;
}

.post-thumbnail {
    padding: 2rem 0;
    text-align: center;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.entry-content {
    padding: 3rem 0;
}

.entry-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.entry-tags {
    font-size: 0.95rem;
}

.post-navigation {
    padding: 3rem 0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 500;
}

/* 404 Page */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #d4af37;
    color: #d4af37;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.error-button:hover {
    background-color: #d4af37;
    color: #000000;
}

.error-button.secondary {
    background-color: transparent;
}

/* Archive & Posts Grid */
.archive-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.archive-description {
    text-align: center;
    opacity: 0.8;
    margin-top: 1rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.post-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.post-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.post-card-thumbnail {
    overflow: hidden;
}

.post-card-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-thumbnail img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 2rem;
}

.post-card .entry-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.post-card .entry-meta {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-excerpt {
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.read-more {
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    letter-spacing: 1px;
}

.posts-navigation {
    padding: 3rem 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #d4af37;
    color: #000000;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Sidebar Styles */
.site-content-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

body.sidebar-left .site-content-wrapper {
    grid-template-columns: 300px 1fr;
}

body.sidebar-none .site-content-wrapper {
    grid-template-columns: 1fr;
}

body.sidebar-none .site-content-wrapper .sidebar {
    display: none;
}

@media (max-width: 992px) {
    .site-content-wrapper {
        grid-template-columns: 1fr;
    }
}

.sidebar {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.sidebar .widget {
    margin-bottom: 2rem;
}

.sidebar .widget-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.sidebar ul li:last-child {
    border-bottom: none;
}

/* Comments Styles */
.comments-area {
    padding: 3rem 0;
}

.comments-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
}

.comment-list .comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    border-radius: 50%;
    border: 2px solid #d4af37;
}

.comment-meta {
    font-size: 0.9rem;
    opacity: 0.7;
}

.comment-content {
    margin-bottom: 1rem;
}

.comment-reply-link {
    font-size: 0.9rem;
    color: #d4af37;
}

.comment-respond {
    margin-top: 3rem;
}

.comment-reply-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-submit .submit {
    padding: 1rem 2rem;
    background-color: #d4af37;
    color: #000000;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit .submit:hover {
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 0;
}

.no-results h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.no-results .search-form {
    max-width: 500px;
    margin: 0 auto;
}

.no-results .search-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.no-results .search-form input[type="search"] {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-family: inherit;
    font-size: 1rem;
}

.no-results .search-form input[type="search"]:focus {
    outline: none;
    border-color: #d4af37;
}

.no-results .search-form input[type="submit"] {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background-color: #d4af37;
    color: #000000;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.front-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    pointer-events: none;
    z-index: 6;
}

.front-overlay-left {
    justify-content: flex-start;
}

.front-overlay-center {
    justify-content: center;
}

.front-overlay-right {
    justify-content: flex-end;
}

.front-overlay-img {
    max-width: min(44vw, 420px);
    width: 100%;
    height: auto;
    opacity: var(--front-overlay-opacity);
}

.hero-section .front-overlay {
    z-index: 2;
}

.hero-section .hero-content {
    z-index: 3;
}

.hero-section .hero-overlay {
    z-index: 1;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.slide-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.slide-button {
    display: inline-block;
    padding: var(--button-padding-y) var(--button-padding-x);
    border: var(--button-border-width) solid var(--primary-color);
    border-radius: var(--button-radius);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: var(--font-button);
}

.slide-button:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.button-hover-glow .slide-button:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.button-hover-lift .slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(212, 175, 55, 0.5);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 70vh;
        min-height: 500px;
    }

    .front-overlay {
        align-items: flex-end;
        padding: 1rem;
    }

    .front-overlay-img {
        max-width: min(70vw, 260px);
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Footer Menu */
.footer-navigation {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.footer-navigation a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-navigation a:hover {
    color: #f5deb3;
    letter-spacing: 1px;
}

/* Services Page Styles */
.services-page-section {
    padding: 4rem 0;
}

.services-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0 0 2.5rem;
}

.service-category.hidden {
    display: none;
}

.service-category {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-category:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.service-category-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-category-icon {
    font-size: 2.5rem;
}

.service-consultation {
    font-size: 1rem;
    background-color: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-left: auto;
    font-weight: bold;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.service-name {
    font-size: 1.1rem;
    color: #ffffff;
}

.service-duration {
    display: inline-block;
    margin-left: 0.6rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.08);
    color: var(--secondary-color);
    vertical-align: middle;
}

.service-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.08);
    color: var(--primary-color);
    vertical-align: middle;
}

.service-badge.badge-featured {
    background: rgba(212, 175, 55, 0.16);
    border-color: rgba(212, 175, 55, 0.45);
}

.service-badge.badge-new {
    background: rgba(245, 222, 179, 0.12);
    border-color: rgba(245, 222, 179, 0.35);
    color: var(--secondary-color);
}

.service-name.service-note {
    color: #d4af37;
    font-style: italic;
    opacity: 0.8;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d4af37;
}

@media (max-width: 768px) {
    .service-category {
        padding: 1.5rem;
    }
    
    .service-category-title {
        font-size: 1.6rem;
        flex-wrap: wrap;
    }
    
    .service-consultation {
        width: 100%;
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
}

/* Chi Siamo Page Styles */
.about-page-section {
    padding: 4rem 0;
}

.about-hero {
    text-align: left;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 4rem;
}

.about-hero-text-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
}

.about-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.about-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-hero:hover .about-hero-image img {
    transform: scale(1.03);
}

.about-hero-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-title {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.about-hero-text {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

.story-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-main-content {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.about-main-content h2 {
    color: #d4af37;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.about-main-content h3 {
    color: #d4af37;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.about-main-content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-main-content ul,
.about-main-content ol {
    color: #ffffff;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-main-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.about-main-content strong {
    color: #d4af37;
}

.about-main-content a {
    color: #d4af37;
    text-decoration: underline;
}

.about-main-content a:hover {
    color: #f5deb3;
}

/* Front Page Content Styles */
.front-page-content {
    padding: 4rem 0;
}

.front-page-content h2 {
    color: #d4af37;
    margin: 2rem 0 1rem;
    font-size: 2rem;
}

.front-page-content h3 {
    color: #d4af37;
    margin: 1.5rem 0 1rem;
    font-size: 1.6rem;
}

.front-page-content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.front-page-content ul,
.front-page-content ol {
    color: #ffffff;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.front-page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.front-page-content strong {
    color: #d4af37;
}

.front-page-content a {
    color: #d4af37;
    text-decoration: underline;
}

.front-page-content a:hover {
    color: #f5deb3;
}

.front-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(212, 175, 55, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.testimonial-rating .star {
    color: #333;
    transition: color 0.3s ease;
}

.testimonial-rating .star.filled {
    color: #d4af37;
}

.testimonial-content {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: #ffffff;
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-card {
        min-width: 85%;
        scroll-snap-align: start;
    }
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 5rem 0;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #000000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-open {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.portfolio-open:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.7);
    outline-offset: 3px;
}

.portfolio-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10002;
}

.portfolio-lightbox.open {
    display: block;
}

.portfolio-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.portfolio-lightbox-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(96vw, 1100px);
    max-height: 92vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    padding: 1.25rem;
}

.portfolio-lightbox-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.portfolio-lightbox-close::before,
.portfolio-lightbox-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

.portfolio-lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.portfolio-lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.portfolio-lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    display: block;
}

.portfolio-lightbox-meta {
    margin-top: 1rem;
}

.portfolio-lightbox-title {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.portfolio-lightbox-excerpt {
    margin: 0;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

body.lightbox-open {
    overflow: hidden;
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.portfolio-excerpt {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.portfolio-pagination {
    margin-top: 3rem;
    text-align: center;
}

.no-portfolio {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 3rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    border-top: 2px solid #d4af37;
    padding: 1.5rem 0;
    z-index: 9999;
    display: none;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content {
    flex: 1;
    min-width: 280px;
}

.cookie-title {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cookie-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-link {
    color: #d4af37;
    text-decoration: underline;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #f5deb3;
}

.cookie-accept {
    background: #d4af37;
    color: #000000;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: #f5deb3;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Social Icons Styles */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: #d4af37;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #d4af37;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.footer-social {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-social .social-icons {
    justify-content: center;
}

@media (max-width: 768px) {
    .site-header .social-icons {
        display: none;
    }
    
    .footer-social .social-icons {
        gap: 0.8rem;
    }
    
    .footer-social .social-icon {
        width: 36px;
        height: 36px;
    }
}

/* Privacy Policy Page Styles */
.privacy-section {
    padding: 4rem 0;
}

.privacy-container {
    max-width: 900px;
}

.privacy-content {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 3rem;
}

.privacy-subtitle {
    color: #d4af37;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.privacy-title {
    color: #d4af37;
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-minititle {
    color: #ffffff;
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-paragraph {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.privacy-paragraph strong {
    color: #d4af37;
}

.privacy-paragraph.privacy-last {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    opacity: 0.9;
}

.privacy-list {
    color: #ffffff;
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.privacy-list li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.privacy-list li::marker {
    color: #d4af37;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1.5rem;
    }
    
    .privacy-title {
        font-size: 1.25rem;
    }
    
    .privacy-minititle {
        font-size: 1.1rem;
    }
}

.values-section {
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-title {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.team-section {
    margin-bottom: 4rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border: 3px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: rgba(0, 0, 0, 0.5);
}

.team-name {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #ffffff;
    font-size: 1rem;
    opacity: 0.8;
}

.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
}

.about-cta-title {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.about-cta-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .about-hero-text-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero {
        text-align: center;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
}
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-section {
        padding: 2rem 1.5rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-navigation ul {
        gap: 1rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}
