:root {
    --primary-color: #d4af37;
    --secondary-color: #333333;
    --dark-color: #222222;
    --light-color: #f9f9f9;
    --accent-color: #a0a0a0;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --background-color-light: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-color);
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Whatsapp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #00000000, #000000a9);
    padding: 20px 0;
    z-index: 100;
    transition: all 0.8s ease;
}

header.scrolled {
    padding: 15px 0;
    background: linear-gradient(to top, #00000000, #000000fb);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 100px;
}

.logo a {
    text-decoration-color: rgb(255, 255, 255);
    transition: all 0.5s ease;
}

.logo a:hover {
    text-decoration-color: var(--primary-color);
    transform: scale(1.05);

    .text-strong-1 {
        text-decoration-color: var(--primary-color);
        transform: scale(1.05);
    }
}

.logo p {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: white;
    font-weight: 100;
    letter-spacing: -2px;


}

.text-strong {
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}

.text-strong-1 {
    font-weight: 100;
    letter-spacing: -5px;
    border: 1px solid white;
    padding-right: 8px;
    background-color: white;
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-weight: bolder;
    text-decoration: underline;
    text-decoration-color: rgb(45, 45, 45);
    transition: all 0.5s ease;
}





/* Social Icons in Header */

.social-header {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 200px;
}

.social-header a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-header a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Menu Button */
.menu-btn {
    cursor: pointer;
    background-color: transparent;
    padding: 8px 20px;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 50px;
}

.menu-btn:hover {
    background-color: white;
    color: var(--dark-color);
}

@media (max-width: 1366px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 30px;
    }

    .reserva-cita {
        padding: 10px 20px;
    }
}

@media (max-width: 1024px) {

    .about-content,
    .events-content {
        flex-direction: column;
    }

    .animated-title {
        font-size: 4rem;
    }

    .about-image-collage {
        margin-top: 40px;
        grid-template-rows: repeat(15, 25px);
    }
    
    .about-image::before,
    .about-image::after {
        width: 100px;
        height: 100px;
    }
}

@media (max-height: 800px) {
    .hero-content img {
        width: clamp(250px, 35%, 490px);
        margin-top: -5rem;
    }

    .hero {
        padding: 0px 0 30px;
    }

    p.animated-subtitle {
        display: none;
    }

    .reserva-cita {
        padding: 10px 20px;
        margin-top: -5rem;
    }
}

@media (max-width: 768px) {
    .social-header {
        display: none;
    }

    .menu-btn {
        right: 5px;
    }

    .menu-btn span {
        display: none;
    }

    .logo {
        left: 20px;
    }

    .menu-content {
        padding: 30px 20px;
    }

    .menu-header {
        top: 30px;
        padding: 0 20px;
    }

    .close-btn {
        right: 20px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .animated-title {
        font-size: 3rem;
    }

    .animated-subtitle {
        font-size: 1.5rem;
    }

    section {
        padding: 70px 0;
    }

    .team-members {
        display: block !important;
        width: 100%;
    }

    .team-member {
        width: 100%;
        height: auto;
        min-height: 350px;

        display: block;
    }

    .member-image {
        height: 350px;
    }

    .team-member-content {
        padding: 30px;
    }

    .team-member h3 {
        font-size: 28px;
    }

    .social-menu {
        gap: 15px;
    }

    .social-menu a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-content img {
        width: clamp(450px, 95%, 600px);
        max-width: 95%;
        margin-bottom: 1.5rem;
    }

    .hero {
        padding: 100px 10px 40px;
    }

    .about-image-collage {
        grid-template-rows: repeat(18, 20px);
        margin-left: 10px;
        width: 130%;
    }
    
    .item1 {
        grid-column: 1 / 8;
        grid-row: 1 / 9;
    }
    
    .item2 {
        grid-column: 7 / 13;
        grid-row: 2 / 8;
    }
    
    .item3 {
        grid-column: 2 / 7;
        grid-row: 8 / 15;
    }
    
    .item4 {
        grid-column: 6 / 13;
        grid-row: 10 / 18;
    }

        


    .text-strong-2{
        line-height: 1.1;
    }
        .text-strong-2-light {
            line-height: 1.1;
            
        }
        .section-title p{
            line-height: 1.1;
            max-width: 300px;
        }
        
      
}

@media (max-width: 600px) {
    .hero-content img {
        width: 95%;
        min-width: 350px;
        max-width: 550px;
    }
}

@media (max-width: 480px) {
    .logo {
        left: 15px;
    }

    .menu-header .logo {
        left: 15px;
    }

    .animated-title {
        font-size: 2.5rem;
    }

    .team-members,
    .care-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 10px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }

    .hero-content {
        padding: 0 5px;
    }

    .hero-content img {
        width: 98%;

        margin-bottom: 1.2rem;
        max-width: none;
    }

    .hero {
        padding: 80px 5px 30px;
    }

    .about-image-collage {
        grid-template-rows: repeat(20, 15px);
        gap: 8px;
    }
    
    .item1 {
        grid-column: 1 / 9;
        grid-row: 1 / 7;
    }
    
    .item2 {
        grid-column: 5 / 13;
        grid-row: 2 / 8;
    }
    
    .item3 {
        grid-column: 1 / 8;
        grid-row: 7 / 14;
    }
    
    .item4 {
        grid-column: 5 / 13;
        grid-row: 10 / 18;
    }
    
    .about-image::before,
    .about-image::after {
        display: none;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20px;
}

.bar {
    width: 30px;
    height: 2px;
    background-color: white;
    margin: 2px 0;
    transition: 0.4s;
}

.bar:nth-child(2) {
    width: 20px;
    margin-left: auto;
}

.menu-btn:hover .bar {
    background-color: var(--dark-color);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    padding: 0 40px;
}

.close-btn {
    color: white;
    font-size: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 40px;
    top: 0;
}

.close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 15px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
}

.fullscreen-menu.active .nav-links li {
    transform: translateY(0);
    opacity: 1;
}

.fullscreen-menu.active .nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.fullscreen-menu.active .nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.fullscreen-menu.active .nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.fullscreen-menu.active .nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.fullscreen-menu.active .nav-links li:nth-child(5) {
    transition-delay: 0.5s;
}

.fullscreen-menu.active .nav-links li:nth-child(6) {
    transition-delay: 0.6s;
}

.fullscreen-menu.active .nav-links li:nth-child(7) {
    transition-delay: 0.7s;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 24px;
    transition: color 0.3s;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

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

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

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

.menu-footer {
    margin-top: 30px;
    position: relative;
}

.social-menu {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-menu a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-decoration: none;
}

.social-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1568515045052-f9a854d70bfd?q=80&w=600&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    filter: brightness(0.2) blur(1px);
    z-index: -2;
    animation: heroBgAnim 10.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    transform: scale(1.08);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.138));
    z-index: -1;
}

.hero-content {
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    gap: 2rem;
}

.hero-content img {
    width: clamp(280px, 45%, 600px);
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.5s ease;
    animation: pulse 8s ease-in-out infinite;
    max-width: 100%;
}

.hero-content img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
}

@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 45px rgba(0, 0, 0, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 45px rgba(4, 4, 4, 0.5));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 45px rgb(12, 12, 12));
    }
}

@keyframes heroBgAnim {
    0% {
        filter:grayscale(20%) brightness(0.2) blur(1px);
        transform: scale(1);
    }
    100% {
        filter:grayscale(100%) brightness(1) blur(0);
        transform: scale(1.1);
    }
}

.animated-title {
    font-family: 'The Nautigal', cursive;
    font-size: 5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.animated-subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.5s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color:var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* background-color: rgba(0, 0, 0, 0.2); */
    padding: 15px 30px;
    border: 1px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.btn-primary:hover {
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: none;
}

.btn-primary:hover::before {
    width: 100%;
}
.btn-primary-light {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color:var(--light-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* background-color: rgba(0, 0, 0, 0.2); */
    padding: 15px 30px;
    border: 1px solid var(--light-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.btn-primary-light:hover {
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: none;
}

.btn-primary-light:hover::before {
    width: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 77, 77, 0.4);
}

.reserva-cita {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 1rem;
}

.reserva-cita::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.reserva-cita:hover {
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.reserva-cita:hover::before {
    width: 100%;
}

.reserva-cita i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.reserva-cita:hover i {
    transform: translateX(5px);
    animation: bounceArrow 0.8s ease infinite;
}



@keyframes bounceArrow {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

p.animated-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: bold;
    position: absolute;
    bottom: -400px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease 0.3s both;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.136);
    width: 100%;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: start;
    margin-bottom: 60px;
   
}

.section-title p {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;

}

.separator {
    width: 280px;
    height: 3px;
    background: var(--primary-color);
    margin-top: -10px;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-strong-2 {
    font-weight: bold;
    letter-spacing: -5px;
    padding-right: 8px;
    color:var(--secondary-color);
    font-family: 'Oswald', sans-serif;
    transition: all 0.5s ease;
}
.text-strong-3 {
    font-weight: 100;
    letter-spacing: -5px;
    color:var(--secondary-color);
    font-family: 'Oswald', sans-serif;
    transition: all 0.5s ease;
}
.text-strong-2-light {
    font-weight: bold;
    letter-spacing: -5px;
    padding-right: 8px;
    color:var(--light-color);
    font-family: 'Oswald', sans-serif;
    transition: all 0.5s ease;
}
.text-strong-3-light {
    font-weight: 100;
    letter-spacing: -5px;
    color:var(--light-color);
    font-family: 'Oswald', sans-serif;
    transition: all 0.5s ease;
}


.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 10px;
}

.about-image-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 30px);
    gap: 12px;
    width: 100%;
    height: 100%;
    position: relative;
    /* filter: grayscale(55%); */
    transition: all 0.8s ease;
}

.about-image-collage:hover {
    filter: saturate(1.5);
}

.collage-item {
    overflow: hidden;
    position: relative;
    background-color: var(--dark-color);
    transform-origin: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid var(--light-color);
}

.collage-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.collage-item:hover {
    transform: scale(1.02);
    /* z-index: 10; */
}

.collage-item:hover::after {
    opacity: 0.3;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.collage-item:hover img {
    transform: scale(1.1);
}

.item1 {
    grid-column: 1 / 8;
    grid-row: 1 / 8;
    z-index: 2;
}

.item2 {
    grid-column: 7 / 12;
    grid-row: 2 / 7;
    z-index: 1;
}

.item3 {
    grid-column: 2 / 7;
    grid-row: 6 / 13;
    z-index: 3;
}

.item4 {
    grid-column: 6 / 11;
    grid-row: 7 / 12;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-color);
    top: -20px;
    left: -20px;
    z-index: -1;
    opacity: 0.5;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-color);
    bottom: -20px;
    right: -20px;
    z-index: -1;
    opacity: 0.5;
}

.video-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(239, 239, 239, 0.216);
    border: 1px solid var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    z-index: 5;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.play-icon i {
    position: relative;
    left: 2px;
}

.collage-item:hover .play-icon {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--dark-color);
    color: white;
}

.gallery-section .section-title h2 {
    color: white;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: white;
    padding: 8px 20px;
    margin: 0 5px 10px;
    cursor: pointer;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

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

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

/* Team Section */
.team-section {
    background-color: var(--dark-color);
    color: white;
    padding: 0;
    overflow: hidden;
}

.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.team-member {
    background: var(--dark-color);
    overflow: hidden;
    text-align: left;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    height: 400px;
}

.team-member:hover {
    transform: none;
    box-shadow: none;
}

.member-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease;
}

@media (min-width: 1500px) {
    .member-image img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        filter: grayscale(100%);
        transition: transform 0.5s ease;
        transform: translateY(-15%);
    }

    .team-member {
        height: 500px;
    }

}

.team-member:hover .member-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-member-content {
    position: absolute;
    bottom: 0;
    padding: 40px;
    z-index: 2;
    width: 100%;
}

.team-member h3 {
    margin: 0 0 20px 0;
    font-size: 32px;
    color: white;
    border-bottom: 3px solid white;
    width: fit-content;
    padding-bottom: 10px;
    padding-right: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
}


.member-title,
.team-member p {
    display: none;
}

.team-member .see-work {
    color: white;
    text-decoration: none;
    /* font-weight: ; */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    font-family: 'Oswald', sans-serif;
}

.team-member h3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.team-member .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: end;
}

.team-member .social-links a {
    color: white;
    font-size: 22px;
    transition: color 0.3s ease;
}

.team-member .social-links a:hover {
    color: var(--primary-color);
}

/* Events Section */
.events-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.677), rgba(0, 0, 0, 0.5)), url(./images/chicoTatuando.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.events-content {
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--light-color);
}

.events-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.events-text {
    flex: 1;
}

.events-text{
    margin-top: 100px;
}

.events-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--light-color);
    letter-spacing: -1px;
    font-weight: 100;
    margin-top: -90px;
    font-family: 'Oswald', sans-serif;
}

.events-text p {
    margin-bottom: 20px;
    max-width: 700px;
}

/* Gift Card Section */

.gift-card-section {
    position: relative;
    overflow: hidden;
}

.regalo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    text-align: center;
    font-size: clamp(15rem, 30vw, 30rem);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: var(--dark-color);
    letter-spacing: -5px;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}
.regalo-responsive {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    text-align: center;
    font-size: clamp(8rem, 30vw, 30rem);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: var(--dark-color);
    letter-spacing: -5px;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
    display: none;
}

.gift-card-section .container,
.gift-card-content,
.gift-card-text,
.gift-card-image {
    position: relative;
    z-index: 2;
}

.gift-card-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 80px;
    margin-top: -100px;
}

.gift-card-text {
    flex: 1;
}

.gift-card-image {
    flex: 1;
}

.gift-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.841));
}

.gift-card-text h3 {
    font-size: 28px;
    color: var(--dark-color);
    letter-spacing: -1px;
    font-family: 'Oswald', sans-serif;
}

.gift-card-text p {
    margin-bottom: 80px;
    max-width: 700px;
    color: var(--dark-color);
    margin-top: 20px;
    
}

@media (max-width: 768px) {
    .gift-card-content {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-top: -80px;
        flex-direction: column;
    }

    .regalo {
       display: none;
    }

    .regalo-responsive {
        display: block;
    }
}


/* Testimonials Section */
.testimonials-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.677), rgba(0, 0, 0, 0.5)), url(./images/tienda.jpg);
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.testimonials-section .section-title h2 {
    color: white;
}

.testimonial {
    /* background-color: rgba(255, 255, 255, 0.151); */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.rating {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.7;
}

.client h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.google-reviews {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.google-review-btn {
    display: flex;  
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--light-color);
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
}   

.google-logo {
    width: 40px;
    height: 40px;
}

.google-logo:hover {
    transform: scale(1.1);
}

.google-review-btn:hover {
    color: var(--primary-color);
}


/* Appointment Section */

.appointment-section {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 100px 0;
}

.appointment-text {
    max-width: 700px;
   margin-bottom: 50px;
   
}


.form-container {
    background: rgba(34, 34, 34, 0.98);
    /* border-radius: 16px; */
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.875);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    /* border: 1.5px solid var(--accent-color); */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light-color);
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--accent-color);
    /* border-radius: 6px; */
    border-radius: 0;
    font-size: 16px;
    background: rgba(249, 249, 249, 0.08);
    color: var(--light-color);
    margin-bottom: 5px;
    transition: border 0.3s, background 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(249, 249, 249, 0.18);
}

select.form-control {
    background: var(--dark-color);
    color: var(--light-color);
    border: 1.5px solid var(--accent-color);
    /* border-radius: 6px; */
    border-radius: 0;
    font-size: 16px;
    padding: 12px 15px;
    margin-bottom: 5px;
    transition: border 0.3s, background 0.3s;
}

select.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #222;
    color: var(--primary-color);
}

select.form-control option {
    background: var(--dark-color);
    color: var(--light-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    border: 1.5px solid var(--accent-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--light-color);
    margin: 20px auto;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.error-text {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.input-error {
    border-color: var(--error-color);
}

.success-message {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid var(--success-color);
    /* border-radius: 5px; */
    border-radius: 0;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--success-color);
    display: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
option{
    border-radius: 0;
}

@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.appointment-section .section-title h2,
.appointment-section .section-title span {
    color: var(--light-color);
}

.appointment-section .btn.btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    /* border-radius: 6px; */
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.appointment-section .btn.btn-primary:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.15);
}


/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}



.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 30px;
    margin-top: 5px;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-info .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.contact-info .social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-info .social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-links h3 {
    font-size: 25px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

/* .footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
} */

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

    .footer-newsletter p {
        margin-bottom: 20px;
        color: var(--accent-color);
    }
    .footer-newsletter h3 {
        font-size: 25px;
        font-family: 'Oswald', sans-serif;
    }

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
    padding: 0 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--accent-color);
}

.footer-bottom-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 24px;
    margin-top: 75px;
}

.footer-social a {
    color: var(--light-color);
    font-size: 2rem;
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.15);
}


/* Utility Classes */
body.no-scroll {
    overflow: hidden;
}

.fullscreen-menu.active .nav-links li {
    transform: translateY(0);
    opacity: 1;
}

.fullscreen-menu.active .social-menu a {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.fullscreen-menu.active .social-menu a:nth-child(1) {
    animation-delay: 1.0s;
}

.fullscreen-menu.active .social-menu a:nth-child(2) {
    animation-delay: 1.1s;
}

.fullscreen-menu.active .social-menu a:nth-child(3) {
    animation-delay: 1.2s;
}

.social-menu a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
    animation: modalFadeIn 0.5s ease;
}

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

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-video {
    position: absolute;
    top: -40px;
    right: -10px;
    color: white;
    font-size: 40px;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.close-video:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 15% auto;
    }
    
    .close-video {
        top: -35px;
        right: 0;
    }
}

/* Tattoo Gallery Section */
.tattoo-gallery-section {
    background-color: var(--dark-color);
}
.tattoo-gallery.full-width-gallery {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0;
}

.gallery-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 600px;
    gap: 5px;
    width: 100vw;
    max-width: 100vw;
    padding: 20px;
}

@media (max-width: 768px) {
    .gallery-collage {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 600px;
        gap: 5px;
        width: 100vw;
        max-width: 100vw;
        padding: 8px;
    }
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.4s;
    /* border: 10px solid var(--light-color); */
}

.gallery-item img:hover {
    transform: scale(1.07);
    filter: grayscale(0%);
}

.item-2, .item-4, .item-5, .item-7 {
    grid-row: span 1;
}

.gallery-cta {
    width: 100%;
    text-align: center;
}

.gallery-cta a {
  
        margin-top: 50px;
        text-align: center;
    }

@media (max-width: 768px) {
    .gallery-collage {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item {
        grid-row: span 1 !important;
    }
}

select.form-control {
    background: var(--dark-color);
    color: var(--light-color);
    border: 1.5px solid var(--accent-color);
    border-radius: 6px;
    font-size: 16px;
    padding: 12px 15px;
    margin-bottom: 5px;
    transition: border 0.3s, background 0.3s;
}

select.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #222;
    color: var(--primary-color);
}

select.form-control option {
    background: var(--dark-color);
    color: var(--light-color);
}






