/* General settings for the light theme */
body {
  background-color: #ffffff;
  color: #000000;
}

.content {
  background-color: #f8f9fa;
  color: #000000;
  padding: 20px;
  border-radius: 5px;
}

nav {
  background-color: #f8f9fa;
  color: #000000;
}

button {
  background-color: #e0e0e0;
  color: #000000;
  border: 1px solid #000000;
}

a {
  color: #007bff;
}

a:hover {
  color: #0056b3;
}

.card {
  background-color: #ffffff;
  color: #000000;
}

input, select {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

nav a {
  color: #000000;
}

nav a:hover {
  color: #007bff;
}

.fa-sun:hover {
  color: yellow; !important;
}

body.dark-theme {
  background-color: #555555;
  color: #ffffff;
}

body.dark-theme index.html {
  /* index.html saját stílusai a dark theme-hez */
}

.navbar-toggler-icon {
  filter: invert(1); /* Fehér szín a sötét háttéren */
}




/* ------------------------------------Discover our rooms táblázat--------------------------------------------------- */


/* Room card linkek alapértelmezett stílusa világos témában */
body.light-theme .room-card h3 {
  color: #000000;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

body.light-theme .room-card a {
  text-decoration: none;
  color: inherit;
}

/* Hover hatás a room card-okra világos témában */
body.light-theme .room-card:hover {
  transform: scale(1.05); /* Enyhe nagyítás */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Finom árnyék */
}

body.light-theme .room-card:hover h3 {
  color: #000dff; /* Hover szín a szövegnek */
}

body.light-theme .room-image {
  transition: filter 0.3s ease; /* Fényerő változás animálása */
}

body.light-theme .room-card:hover .room-image {
  filter: brightness(1.1); /* Enyhén világosabb kép hover állapotban */
}

/* ------------------------------------Activities szekció világos témában----------------------------------------- */

body.light-theme .activities {
  background-color: #f0f4f8 !important; /* Fehér háttér */
  color: #000000 !important; /* Fekete szöveg */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); !important; /* Finom árnyék */
  border-radius: 8px !important;
  padding: 20px !important;
  margin-top: 20px !important;
  text-align: center !important;
}

/* Activities főcím */
body.light-theme .activities h2 {
  color: #000000 !important;
  font-size: 1.8em !important;
  margin-bottom: 20px !important;
}

/* Activity card alapstílusok világos témában */
body.light-theme .activity-card {
  background-color: #ffffff !important; /* Fehér háttér */
  color: #000000 !important; /* Fekete szöveg */
  padding: 15px !important;
  border-radius: 8px !important;
  text-align: center !important;
  min-width: 200px !important;
  max-width: 250px !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1) !important; /* Árnyék a kontraszt érdekében */
}

/* Képstílus az aktivitás kártyákban */
body.light-theme .activity-card .activity-image {
  width: 100% !important;
  height: 150px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  margin-bottom: 10px !important;
}

/* Kártya címek (span) */
body.light-theme .activity-card span {
  font-size: 1.1em !important;
  font-weight: bold !important;
  color: #000000 !important; /* Fekete betűszín */
}


/* Általános beállítások az „Activities” szekcióhoz, mindkét témához */

.activities {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.activity-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.activity-card {
  background-color: #ffffff; /* Fehér háttér világos témában */
  color: #333333; /* Sötét szöveg világos témában */
  padding: 20px;
  border-radius: 8px;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.activity-card .activity-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Sötét téma változatai */
body.dark-theme .activity-card {
  background-color: #2a2a2a;
  color: #e0e0e0;
}

body.dark-theme .activities h2,
body.light-theme .activities h2 {
  color: #afabab; /* Azonos szín mindkét témában */
  font-size: 1.8em;
  margin-bottom: 20px;
}
