/* Reset y configuración general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #333;
}
/* Menú de navegación */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #222;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 2em; /* Larger font size for the logo */
  font-weight: bold;
}

.logo a {
  color: #fff; /* Match nav-links color */
  text-decoration: none; /* Remove underline */
}

.logo a:hover {
  color: #ff0bd6; /* Match nav-links hover color */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
}

.nav-links a:hover {
  color: #ff0bd6;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}
/* Banner (Hero Section) */
.hero {
  height: 50vh; /* Ocupa el 60% de la altura de la ventana */
  background: url('assets/banner2.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000000;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3.5em;
  margin-bottom: 235px;
  font-family: 'Playfair Display', serif;
}
.hero p {
  font-size: 1.5em;
  margin-bottom: 20px;
}
.cta-button {
  margin-top: 320px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #a866aade;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.cta-button:hover {
  background-color: #883888;
}
/* Sección de Portafolio */

.portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%; /* Prevent any width restriction */
  margin: 0; /* Ensure no extra margin */
  padding: 0; /* Ensure no extra padding */
}
.portfolio-section {
  padding: 50px;
  text-align: center;
  background-color: #f9f9f9;
}
.portfolio-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1600px;
  margin:  auto;
}

.portfolio-item video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  /* Remove margin-top */
}
.portfolio-item video,
.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.portfolio-item:hover video,
.portfolio-item:hover img {
  transform: scale(1.05);
}
.portfolio-item p {
  margin-top: 40px;
  font-size: 1.1em;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 500px; /* Adjust this to control video size */
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  margin: 0 auto; /* Center the video */
}

.portfolio-item.photo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px; /* Match the image’s max-width */
  margin: 0 auto; /* Center the container */
  padding: 0; /* Remove any padding */
}

.portfolio-item.photo-center img {
  width: 100%;
  max-width: 400px; /* Desired image width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin: 0; /* Ensure no extra margin */
  padding: 0; /* Ensure no extra padding */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .video-container {
    max-width: 100%; /* Full width on mobile */
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
  }
}

/* Sección Sobre Mí */
.about-section {
  padding: 10px;
  text-align: center;
}

.about-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px; /* Centrado con espacio reducido debajo */
}

.about-content p {
  font-size: 1.5em !important; /* Tamaño del texto */
  color: #000000 !important; /* Color, por ejemplo, rosa */
  font-weight: bold;
  display: inline-block;
  text-align: center;
}

.break-after-comma {
  display: block; /* Forces the span content to a new line */
}

/* Sección de sobre mi */
.contact-section {
  padding: 50px;
  background-color: #000000;
  color: #fff;
  text-align: center;
}
.contact-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}
.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-section input,
.contact-section textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}
.contact-section textarea {
  height: 150px;
}
.contact-section button {
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.contact-section button:hover {
  background-color: #0056b3;
}
/* Sobre Mí Section */
.about-section {
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 3.0em;
  margin-bottom: 30px;
  color: #000000;
}

.about-content {
  margin: 40px 0;
}

.about-content p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 20px;
}

.about-content2 .gel-nails {
  font-size: 1.5em;
  color: #000000;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}

.contact-final {
  font-size: 1.3em;
  color: #000000;
  margin-top: 10px;
}

.contact-final a {
  color: #c42bd8;
  text-decoration: none;
}

.contact-final a:hover {
  text-decoration: underline;
}

.social-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-logo {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.social-logo:hover {
  transform: scale(1.1);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.social-links a:hover {
  text-decoration: underline;
}


.brand-logo {
  margin-top: 50px;
}

.brand-logo img {
  max-width: 200px;
  height: auto;
}
/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background-color: #111;
  color: #fff;
}
.social-links a {
  color: #007bff;
  margin: 0 10px;
  font-size: 1.1em;
  text-decoration: none;
}
.social-links a:hover {
  color: #0056b3;
}
/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 300px; /* Más pequeño en móviles */
  }  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #222;
    padding: 20px;
  }  .nav-links.active {
    display: flex;
  }  .menu-toggle {
    display: block;
  }  .portfolio-grid {
    grid-template-columns: 1fr;
  }  .about-content {
    flex-direction: column;
  }
}

/* Variables para colores */
:root {
  --primary-color: #007bff;
  --text-dark: #333;
  --text-medium: #555;
  --text-light: #666;
  --white: #fff;
  --black-overlay: rgba(0, 0, 0, 0.8);
  --section-bg: #f9f9f9;
}

/* Social Media Section */
.social-section {
  padding: 20px 50px 50px;
  text-align: center;
  background-color: var(--section-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-section h2 {
  font-size: 2.5em;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 2500px;
  margin: 0 auto;
}

.social-item {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.social-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.social-item h3 {
  font-size: 1.8em;
  font-family: 'Lato', sans-serif;
  margin: 15px 0 8px;
  color: var(--text-dark);
}

.social-item p {
  font-size: 1.3em;
  color: var(--text-light);
  margin: 0;
}

.social-item a:hover h3,
.social-item a:hover p {
  color: var(--primary-color);
}

/* Embeds (Instagram, YouTube, TikTok) */
.social-item blockquote.instagram-media,
.social-item .youtube-embed,
.social-item .tiktok-embed {
  margin: 0 auto 15px;
  width: 100%;
  max-width: 540px;
  min-width: 326px;
}

.social-item .youtube-embed {
  height: 304px;
  border: none;
  border-radius: 8px;
}

/* YouTube Section */
.youtube-channel {
  text-align: center;
  margin: 20px auto;
  max-width: 540px;
}

.channel-header {
  margin-bottom: 20px;
}

.channel-logo {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  margin-right: 10px;
}

.youtube-channel h3 {
  font-size: 1.5em;
  color: var(--text-dark);
  display: inline-block;
  margin: 0;
}

#channel-stats {
  font-size: 1em;
  color: var(--text-medium);
  margin: 10px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.video-item {
  text-align: center;
}

.thumbnail-container {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 3px;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.3s ease;
}

.thumbnail-container:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 8px;
  background: var(--black-overlay);
  color: var(--white);
  font-size: 0.8em;
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: bold;
}

.video-item p {
  font-size: 1em;
  color: var(--text-medium);
  margin: 10px 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-grid,
  .video-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .social-item {
    max-width: 350px;
    padding: 20px;
  }

  .social-item h3 {
    font-size: 1.5em;
  }

  .social-item p {
    font-size: 1.1em;
  }

  .social-section {
    padding: 20px 30px;
  }

  .social-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .social-item blockquote.instagram-media,
  .social-item .youtube-embed,
  .social-item .tiktok-embed,
  .thumbnail-container {
    max-width: 350px;
    min-width: 280px;
  }

  .social-item .youtube-embed {
    height: 197px;
  }
}

