@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}
html, body {
    min-height: 100vh;
    color: #837165;
    font-family: Raleway, sans-serif;
background: linear-gradient(90deg, #fcfdfe 0%, #e8e6e0 100%);
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
}
.site-main {
    margin-top: 55px !important;
    flex: 1;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 21px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.page-gallery {
    text-align: center;
    align-content: center;
    padding: 20px;
    text-shadow:
    2px 2px 3px #888;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}


.site-footer {
    flex-shrink: 0;
    padding: 20px 0;
    text-align: center;
    background: var(--dsk);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 72px;
    margin-top: auto;
}
.site-footer a {
    margin: 0 1rem;
}
.site-footer img {
    transition: transform 0.2s ease;
}
.site-footer img:hover {
    transform: scale(1.3);
}
section{
display:flex;
flex-grow: 1;
}


/*////////////////////////////////  NAVEGACIÓN PRINCIPAL */ 

:root{ 
--dsk: rgba(232, 230, 224, 0.1); 
--col1: #837165; 
--col2: #c4bbb2; 
--col3: #e8e6e0; }

/*////////////////////////////////  Navbar Principal */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dsk);
    backdrop-filter: blur(5px);
    color: var(--col2); transition: all 0.8s ease;
    z-index: 1000;
}
.navbar.oculto {
    transform: translateY(-100%);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}


/*////////////////////////////////  Logo */
.logo {
    font-weight: bold;
    font-size: 1.5rem;
}
.logo img {
    transition: transform 0.8s ease;
}
.logo img:hover {
    transform: scale(1.1);
}
/* Menú Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}
.nav-menu a {
    text-decoration: none;
    color: #837165;
    transition: transform 0.8s ease !important;
}
.nav-menu a:hover {
    font-weight: 800;
    transform: scale(1.1) !important;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 18px!important;
        text-align:right;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(232, 230, 224, 0.97);
        backdrop-filter: blur(8px);
        padding: 1rem 0;
        gap: 0;
        z-index: 2000;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        text-align: center;
        padding: 0;
    }
    .nav-menu a {
        display: block;
        padding: 14px 20px;
        font-size: 1.1rem;
        position: relative;
        transition: all 0.3s ease;
        color: #837165;
    }
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 20%;
        width: 60%;
        height: 3px;
        background-color: #FFD700;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .nav-menu a:hover::after,
    .nav-menu a:focus::after {
        transform: scaleX(1);
    }
    .nav-menu a:hover {
        font-weight: 800;
        background: rgba(255, 215, 0, 0.08);
    }
}


/*////////////////////////////////  Hamburguesa */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    padding: 4px;
    gap: 5px;
    transition: border-color 0.3s ease;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #837165;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger:hover {
    border-color: #FFD700;
}
.hamburger:hover span {
    background: #FFD700;
}
.hamburger.active span {
    background: #FFD700;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/*////////////////////////////////  Fonts */


.f-lt {
    font-weight: 300;
}
.f-rg {
    font-weight: 400;
}
.f-md {
    font-weight: 500;
}
.f-sb {
    font-weight: 600;
}

.f-xb {
    font-weight: 800;
}

h1 {
    font-size: clamp(2.4883rem, 2.0237rem + 2.0648vw, 3.624rem);
    line-height: 90%;
    letter-spacing: -0.01em;
    padding-bottom: 8px;
}
h2 {
    font-size: clamp(2.0736rem, 1.7359rem + 1.501vw, 2.8992rem);
    line-height: 86%;
    letter-spacing: -0.02em;
    padding-bottom: 8px;
}
h3 {
    font-size: clamp(1.728rem, 1.4861rem + 1.0752vw, 2.3193rem);
    line-height: 90%;
    letter-spacing: -0.01em;
    padding-top: 8px;
}
h4 {
    font-size: clamp(1.44rem, 1.27rem + 0.7554vw, 1.8555rem);
    line-height: 110%;
    letter-spacing: -0.01em;
    padding-top: 8px;
}
h5 {
    font-size: clamp(1.2rem, 1.0837rem + 0.517vw, 1.4844rem);
    line-height: 115%;
    letter-spacing: -0.01em;
    padding-bottom: 8px;
}
h6 {
  font-size: clamp(1rem, 0.9233rem + 0.3409vw, 1.1875rem);
  line-height: 125%;
  letter-spacing: 0.01em;
  padding-bottom: 8px;
}
p, html {
  font-size: clamp(0.8333rem, 0.7856rem + 0.2121vw, 0.95rem);
  line-height: 115%;
  letter-spacing: normal;
}

small {
  font-size: clamp(0.6944rem, 0.6676rem + 0.1192vw, 0.76rem);
  line-height: 125%;
}


.t-bco{
color:#FFFFFF !important;
}

.interletra01{
letter-spacing:0.01em;
line-height:120%;
}

.local {
font-weight: 900;
position: relative;
}

.local::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FFD700;
}

/* FONDO////////////////////////////////////*/

body#index-page {
    background-image: url('../img/portada-dktp.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    overflow: hidden;
}
@media (max-width: 767px) {
    body#index-page {
        background-image: url('../img/portada-celu.webp');
    }
}
/* /////--- RESPONSIVE (MOBILE) --- */
@media (max-width: 768px) {
    main section article {
        max-width: 100%;
        overflow: visible;
    }
    .gallery-title {
        top: 2.5vh;
    }
    .nav-menu {
        gap: 18px!important;
text-align:right;
    }
    .t-cel1 {
        font-size: 1.8rem;
    }
     .t-cel3 {
        font-size: 1.1rem;
    }
    .site-footer{
        text-align:left;
    }
}

/*////////////////////////////////  Hamburguesa responsive */

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }
    .nav-container {
        position: relative;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(232, 230, 224, 0.97);
        backdrop-filter: blur(8px);
        padding: 1rem 0;
        gap: 0;
        z-index: 2000;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        text-align: center;
        padding: 0;
    }
    .nav-menu a {
        display: block;
        padding: 14px 20px;
        font-size: 1.1rem;
        position: relative;
        transition: all 0.3s ease;
        color: #837165;
    }
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 20%;
        width: 60%;
        height: 3px;
        background-color: #FFD700;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .nav-menu a:hover::after,
    .nav-menu a:focus::after {
        transform: scaleX(1);
    }
    .nav-menu a:hover {
        font-weight: 800;
        background: rgba(255, 215, 0, 0.08);
    }
}