/* ===================================
   EKA LUXURY MAKEUP ARTIST PORTFOLIO
   Main Stylesheet
   =================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    background-color: #000000;
    color: #FAFAFA;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ===================================
   LUXURY EFFECTS
   =================================== */

/* Glow Effects */
.glow-text {
    text-shadow: 0 0 20px rgba(201, 162, 77, 0.3),
                 0 0 40px rgba(201, 162, 77, 0.2);
}

.glow-line {
    box-shadow: 0 0 15px rgba(201, 162, 77, 0.6),
                0 0 30px rgba(201, 162, 77, 0.4);
}

/* Piano Finish Effect */
.piano-finish {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(20, 20, 20, 0.98) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.piano-finish::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%
    );
    animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(0%, 0%) rotate(180deg);
    }
}

/* ===================================
   CUSTOM ANIMATIONS
   =================================== */

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.aos-animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* ===================================
   NAVIGATION
   =================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 4rem;
    box-shadow: 0 4px 20px rgba(201, 162, 77, 0.1);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.lang-link {
    font-size: 20px;
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    cursor: pointer;
}

.lang-link:hover {
    opacity: 0.8;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.lang-link.active {
    opacity: 1;
    filter: grayscale(0%);
}

.nav-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #FAFAFA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(201, 162, 77, 0.5);
}

.nav-phone {
    color: #FAFAFA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    text-shadow: 0 0 20px rgba(201, 162, 77, 0.5);
}

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

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FAFAFA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #C9A24D;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65);
    transition: opacity 1.5s ease;
    opacity: 1;
    display: block;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem 8rem;
    max-width: 1200px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #FAFAFA;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #FAFAFA;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #FAFAFA;
}

.hero-subtitle span {
    display: inline-block;
    margin: 0 1rem;
}

.hero-location {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.8vw, 16px);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: #FAFAFA;
    opacity: 1;
    text-align: center;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #FAFAFA;
    border: 1px solid #FAFAFA;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #C9A24D;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover {
    color: #000000;
    border-color: #C9A24D;
    box-shadow: 0 0 30px rgba(201, 162, 77, 0.5);
    transform: translateY(-2px);
}

.cta-button:hover::before {
    left: 0;
}

/* ===================================
   SIGNATURE STATEMENT
   =================================== */

.signature-section {
    background-color: #000000;
    padding: 8rem 4rem;
    text-align: center;
}

.signature-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #FAFAFA;
}

.signature-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A24D, transparent);
    margin: 0 auto;
}

/* ===================================
   PORTFOLIO SLIDER
   =================================== */
/* Helper for JS-driven crossfades (hero + rotating portfolio tiles) */
.rotating-image {
    display: block;
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}


.portfolio-slider-section {
    background-color: #000000;
    padding: 4rem 4rem 8rem;
    position: relative;
    overflow: hidden;
}

.portfolio-slider-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(201, 162, 77, 0.02) 50%,
        transparent 70%
    );
    animation: shine 10s ease-in-out infinite;
}

.portfolio-category-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FAFAFA;
    margin-bottom: 2rem;
    text-align: center;
}

.portfolio-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.portfolio-grid-rotating {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-item-rotating {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background-color: #000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-rotating img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: opacity 1.2s ease, transform 1.2s ease, filter 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-rotating:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(201, 162, 77, 0.2);
}

.portfolio-item-rotating:hover img {
    transform: scale(1.08);
    opacity: 0.9;
    filter: brightness(1);
}

.portfolio-item-rotating::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A24D, transparent);
    opacity: 0.3;
    transition: all 0.6s ease;
}

.portfolio-item-rotating:hover::after {
    opacity: 1;
    box-shadow: 0 0 25px rgba(201, 162, 77, 0.9);
    height: 4px;
}

.portfolio-item-rotating::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #C9A24D;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-indicator 5s ease-in-out infinite;
    z-index: 10;
}

@keyframes pulse-indicator {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.2);
    }
}

.portfolio-item-small {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background-color: #000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(201, 162, 77, 0.2);
}

.portfolio-item-small:hover img {
    transform: scale(1.08);
    opacity: 0.9;
    filter: brightness(1);
}

.portfolio-item-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A24D, transparent);
    opacity: 0;
    transition: all 0.6s ease;
}

.portfolio-item-small:hover::after {
    opacity: 1;
    box-shadow: 0 0 25px rgba(201, 162, 77, 0.9);
    height: 6px;
}

.portfolio-item-small.in-view {
    animation: fadeInScale 0.8s ease-out forwards;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active img {
    filter: brightness(1);
    box-shadow: 0 30px 80px rgba(201, 162, 77, 0.4);
}

.swiper-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A24D, transparent);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.swiper-slide-active::after {
    opacity: 1;
    box-shadow: 0 0 25px rgba(201, 162, 77, 0.9),
                0 0 50px rgba(201, 162, 77, 0.6);
}

.portfolio-slider-section .swiper-button-next,
.portfolio-slider-section .swiper-button-prev {
    color: #C9A24D !important;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(201, 162, 77, 0.8));
}

.swiper-pagination-bullet {
    background: #FAFAFA !important;
    opacity: 0.3 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #C9A24D !important;
    opacity: 1 !important;
    box-shadow: 0 0 15px rgba(201, 162, 77, 0.8) !important;
}

/* ===================================
   PORTFOLIO MODAL/LIGHTBOX
   =================================== */

.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
}

.portfolio-modal.active {
    display: flex;
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #C9A24D;
    color: #C9A24D;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

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

.modal-content {
    width: 90%;
    height: 85vh;
    max-width: 1200px;
    position: relative;
    z-index: 2001;
}

.modalSlider {
    width: 100%;
    height: 100%;
}

.modalSlider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1);
}

.modalSlider .swiper-button-next,
.modalSlider .swiper-button-prev {
    color: #C9A24D !important;
    opacity: 0.8 !important;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    background-color: #F2EEE9;
    padding: 8rem 4rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #000000;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background-color: #C9A24D;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
    margin-top: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: span 1;
}

.services-grid .service-card:nth-child(4) {
    margin-left: auto;
    margin-right: 1.5rem;
}

.services-grid .service-card:nth-child(5) {
    margin-left: 1.5rem;
    margin-right: auto;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.05), transparent);
    transition: top 0.6s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 162, 77, 0.15);
}

.service-card:hover::before {
    top: 0;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
    color: #000000;
    transition: all 0.4s ease;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: #C9A24D;
    transition: width 0.4s ease;
}

.service-card:hover h3 {
    color: #C9A24D;
}

.service-card:hover h3::after {
    width: 60px;
}

.service-card p {
    font-size: 15px;
    line-height: 2;
    color: #333;
    opacity: 0.9;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.service-card:hover p {
    opacity: 1;
    color: #000;
}

.service-card.in-view {
    animation: slideInUp 0.8s ease-out forwards;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    background-color: #F2EEE9;
    color: #000000;
    padding: 8rem 4rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #333;
}

/* ===================================
   TESTIMONIAL SLIDER
   =================================== */

.testimonial-section {
    padding: 4rem 2rem;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-slide {
    text-align: center;
    padding: 2rem 1.5rem;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #FAFAFA;
}

.testimonial-author {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A24D;
}

/* ===================================
   PORTFOLIO GRID
   =================================== */

.portfolio-section {
    background-color: #FAFAFA;
    padding: 8rem 2rem;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background-color: #000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(201, 162, 77, 0.2);
}

.portfolio-item:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A24D, transparent);
    opacity: 0;
    transition: all 0.6s ease;
}

.portfolio-item:hover::after {
    opacity: 1;
    box-shadow: 0 0 25px rgba(201, 162, 77, 0.9);
    height: 6px;
}

.portfolio-item.in-view {
    animation: fadeInScale 0.8s ease-out forwards;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    background-color: #000000;
    padding: 10rem 4rem;
    text-align: center;
}

.contact-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.social-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone,
.cta-email,
.cta-instagram,
.cta-whatsapp {
    width: 240px;
    text-align: center;
}

.cta-instagram,
.cta-whatsapp {
    border-color: #C9A24D;
}

.cta-instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.cta-whatsapp::before {
    background: #25D366;
}

.cta-instagram:hover {
    color: #FAFAFA;
    border-color: #f09433;
}

.cta-whatsapp:hover {
    color: #FAFAFA;
    border-color: #25D366;
}

.cta-icon {
    margin-right: 0.5rem;
    font-size: 16px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background-color: #000000;
    padding: 4rem;
    border-top: 1px solid #C9A24D;
    text-align: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-links a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FAFAFA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #C9A24D;
    text-shadow: 0 0 15px rgba(201, 162, 77, 0.5);
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FAFAFA;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-links a:hover {
    color: #C9A24D;
    opacity: 1;
}

.copyright {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
}

/* ===================================
   COOKIE CONSENT POPUP
   =================================== */

.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 2px solid #C9A24D;
    padding: 2rem;
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #C9A24D;
    text-transform: uppercase;
    margin: 0;
}

.cookie-content p {
    color: #FAFAFA;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn.accept {
    background: #C9A24D;
    color: #000;
}

.cookie-btn.accept:hover {
    background: #d4ae5e;
    box-shadow: 0 5px 20px rgba(201, 162, 77, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: #FAFAFA;
    border: 1px solid #C9A24D;
}

.cookie-btn.decline:hover {
    background: #C9A24D;
    color: #000;
}

.cookie-link {
    color: #C9A24D;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    margin-left: auto;
}

.cookie-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .cookie-content {
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-link {
        margin-left: 0;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet & Small Desktop (768px and below) */
@media (max-width: 768px) {
    .language-switcher {
        left: 1rem;
        gap: 0.3rem;
    }

    .lang-link {
        font-size: 20px;
    }

    nav {
        padding: 1.5rem 2rem;
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
    }

    nav.scrolled {
        padding: 1rem 2rem;
    }

    .nav-left {
        width: auto;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        list-style: none;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        z-index: 999;
        border-top: 1px solid #C9A24D;
        width: 100%;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .nav-links a {
        font-size: 13px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(201, 162, 77, 0.2);
        display: block;
        width: 100%;
    }

    .logo {
        font-size: 32px;
    }

    .nav-phone {
        font-size: 12px;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        align-items: center;
        padding-top: 12rem;
        padding-bottom: 3rem;
    }

    .hero-content {
        padding: 2rem 1.5rem 2rem;
    }

    .hero h1 {
        font-size: clamp(36px, 6vw, 64px);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: auto;
    }

    .signature-section,
    .about-section,
    .services-section,
    .portfolio-section,
    .portfolio-slider-section,
    .testimonial-section,
    .contact-section {
        padding: 4rem 2rem;
    }

    .services-grid {
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }

    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        margin-left: 0;
        margin-right: 0;
    }

    .services-grid .service-card:nth-child(5) {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-grid-rotating {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        aspect-ratio: 3/4;
    }

    .swiper {
        height: 50vh;
        min-height: 350px;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 11px;
    }

    .contact-buttons,
    .social-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .cta-phone,
    .cta-email,
    .cta-instagram,
    .cta-whatsapp {
        width: 100%;
        max-width: 300px;
    }

    .services-container h2,
    .about-content h2,
    .contact-container h2 {
        font-size: clamp(28px, 4vw, 40px);
    }

    .service-card h3 {
        font-size: 24px;
    }

    .signature-statement {
        font-size: clamp(18px, 2.5vw, 28px);
    }

    .testimonial-quote {
        font-size: clamp(18px, 2vw, 28px);
    }

    .social-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    footer {
        padding: 3rem 1.5rem;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    nav {
        padding: 1rem 1rem;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
    }

    nav.scrolled {
        padding: 0.75rem 1rem;
    }

    .nav-left {
        width: auto;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .nav-phone {
        font-size: 11px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        list-style: none;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        z-index: 999;
        border-top: 1px solid #C9A24D;
        display: none;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 1px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(201, 162, 77, 0.2);
    }

    .hero {
        height: auto;
        min-height: 60vh;
        align-items: center;
        padding-top: 10rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 1rem 1rem;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        letter-spacing: 4px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(12px, 1.5vw, 16px);
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle span {
        display: block;
        margin: 0.5rem 0;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .signature-section {
        padding: 3rem 1.5rem;
    }

    .signature-statement {
        font-size: clamp(16px, 2vw, 24px);
        margin-bottom: 1rem;
    }

    .services-section,
    .about-section {
        padding: 3rem 1.5rem;
    }

    .services-container h2 {
        font-size: clamp(24px, 3.5vw, 36px);
    }

    .services-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
        max-width: 100%;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 14px;
    }

    .about-image {
        height: auto;
    }

    .about-content h2 {
        font-size: clamp(24px, 3.5vw, 36px);
        margin-bottom: 1.5rem;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .portfolio-section {
        padding: 3rem 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-item {
        aspect-ratio: 3/4;
    }

    .swiper {
        height: 45vh;
        min-height: 300px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
        top: 50%;
    }

    .swiper-pagination {
        bottom: 10px;
    }

    .testimonial-section {
        padding: 3rem 1.5rem;
    }

    .testimonial-slide {
        padding: 1.5rem 1rem;
    }

    .testimonial-quote {
        font-size: clamp(16px, 1.8vw, 24px);
        margin-bottom: 1.5rem;
    }

    .testimonial-author {
        font-size: 12px;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-container h2 {
        font-size: clamp(24px, 3.5vw, 36px);
    }

    footer {
        padding: 2rem 1.5rem;
    }

    .footer-brand {
        font-size: 16px;
    }

    .footer-tagline {
        font-size: 10px;
    }

    .social-links {
        gap: 1rem;
        flex-direction: column;
    }

    .social-links a {
        font-size: 10px;
    }

    .copyright {
        font-size: 9px;
    }

    body {
        font-size: 14px;
    }
}

/* Small Mobile Devices (under 360px) */
@media (max-width: 360px) {
    nav {
        padding: 0.75rem 0.75rem;
    }

    .logo {
        font-size: 24px;
    }

    .nav-phone {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 11px;
    }

    .services-container h2,
    .about-content h2,
    .contact-container h2 {
        font-size: 22px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .signature-statement {
        font-size: 16px;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
