/*
Theme Name: Portafolio Fotográfico
Theme URI:  https://tusitio.com
Author:      Tu Nombre
Author URI:  https://tusitio.com
Description: Tema minimalista para fotógrafos usando Tailwind CSS
Version:     1.0
License:     GPLv2 or later
Text Domain: portafolio-fotografico
*/

body {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #555;
}

.lang-btn {
  cursor: pointer;
  margin: 0 5px;
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.lang-btn:hover {
  transform: scale(1.2);
}

/* Menú, títulos y textos destacados */
nav a,
.logo-title,
.menu-link {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.highlight-text {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 300;
  font-size: 0.9rem;
  text-align: center;
  color: #666;
}

html {
  overflow-x: hidden;
}

#mobile-menu {
  transition: all 0.3s ease;
}

#main-content {
  padding-top: 0;
}