/* === ALBUKARAOQUE WEBSITE - BASE STYLES === */
/* Global styles, typography, and resets */

/* === CSS VARIABLES === */
:root {
  --primary-color: #40B5A3;
  --secondary-color: #78D5C7;
  --dark-color: #2c3e50;
  --light-color: #f8f9fa;
  --muted-color: #666;
}

/* === GLOBAL RESETS === */
html {
  margin: 0;
  padding: 0;
  text-align: center;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h4 {
  font-size: 1.5em;
  line-height: 1.5;
}

h5 td {
  text-align: center;
}

.textbody {
  max-width: 60%;
}

.tagline {
  font-size: 2em;
  color: black;
  position: relative;
  z-index: 2;
}

.tagline:hover {
  color: transparent;
  transition: 750ms ease-in-out;
  background: linear-gradient(90deg, #40B5A3, #78D5C7);
  background-clip: text;
  -webkit-background-clip: text;
}

.alert {
  color: transparent;
  background: linear-gradient(90deg, #40B5A3, #78D5C7);
  background-clip: text;
  -webkit-background-clip: text;
}

/* === IMAGES === */
img {
  border-radius: 50%;
  width: 33%;
  padding: 0%;
  margin: 0%;
  transition: transform 1s ease-in-out;
  opacity: 1;
}

.faded-logo {
  width: 20%;
}

img:hover {
  transform: scale(1.05);
  transition: ease-in-out;
}

/* === INTERACTIVE ELEMENTS === */
#btnControl {
  display: none;
}

#btnControl:checked + label > img {
  transform: rotate(720deg);
  width: 75%;
  opacity: 1;
  transition: all 0.7s;
}

#btnControl:not(:checked) + label > img {
  width: 33%;
  opacity: 1;
  transition: all 0.7s;
}

/* === FOOTER === */
footer {
  background-color: #ffffff;
  color: #000000;
  padding: 1rem;
  text-align: center;
}

/* === TABLE STYLES === */
.table {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.table th {
  background: linear-gradient(135deg, #40B5A3 0%, #78D5C7 100%);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 3px solid #2c3e50;
}

.table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  color: #555;
}

.table tr:hover {
  background: #f8f9fa;
}

.table tr:last-child td {
  border-bottom: none;
}

/* === UTILITIES === */
.hidden {
  opacity: 0.25;
}

#CSVTable {
  justify-content: center;
}
