body {
  font-family: "Great Vibes", cursive;
  background: #ffffff;
  margin: 0;
  padding: 0;
  font-size: 22px; 
  line-height: 1.6;
  height: 100vh; 
}

header {
  background: black;
  color: white;
  padding: 15px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-icon {
  width: 23px;         
  height: 23px;
  vertical-align: middle;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

#journalist-form {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 40px 20px; 
  background: #f5f5f5;
  box-sizing: border-box;
} 

#journalist-form form {
  background: white;
  padding: 35px 40px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  text-align: center;
  animation: fadeIn 0.6s ease;
  font-family: 'Arial', sans-serif;
}


#journalist-form h3 {
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
}


#journalist-form input[type="text"],
#journalist-form input[type="email"],
#journalist-form input[type="number"],
#journalist-form input[type="password"],
#journalist-form input[type="date"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 14px;
  transition: 0.3s;
}

#journalist-form input:focus {
  border-color: #000000;
  outline: none;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.row input[type="checkbox"],
.row input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #ff4081;
}


#journalist-form button,
#journalist-form input[type="reset"] {
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 25px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

#journalist-form button:hover,
#journalist-form input[type="reset"]:hover {
  background-color: #333333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h3 {
  font-family: "Great Vibes", cursive;
  font-size: 38px;
  margin-bottom: 25px;
  color: #111;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Playfair Display", serif;
  background: #fafafa;
  transition: all 0.25s ease;
}

input:focus,
textarea:focus,
select:focus {
  background: #fff;
  border-color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  outline: none;
}

textarea {
  resize: none;
  min-height: 80px;
}

button,
input[type="reset"] {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 17px;
  transition: 0.3s ease;
}

button {
  background-color: #000;
  color: #fff;
  font-family: "Great Vibes", cursive;
  font-size: 22px;
  margin-top: 10px;
}

button:hover {
  background-color: #333;
  transform: scale(1.02);
}

input[type="reset"] {
  background: none;
  color: #aaa;
  font-size: 13px;
  margin-bottom: 8px;
}

::placeholder {
  font-family: "Great Vibes", cursive;
  font-style: italic;
  color: #b5b5b5;
  font-size: 17px;
}

.row {
  display: flex;
  gap: 10px;
}

.row input,
.row select {
  flex: 1;
}

nav a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
nav a.active {
  font-weight: bold;
  border-bottom: 2px solid #fff;
}
main {
  padding: 20px;
  text-align: center; 
}

ol {
  list-style-position: inside; 
  margin: 0;
  padding-left: 30px; 
}

main a {
  color: black;
  text-decoration: none; 
  font-weight: bold;
  padding: 0 8px; 
}

main a:hover {
  color: #666; 
  text-decoration: underline; 
}

.fashion-img {
  display: block;
  margin: 30px auto; 
  max-width: 80%; 
  border-radius: 12px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
}

.house {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
}

.house h2, 
.house h3 {
  text-align: center; 
  font-family: "Great Vibes", cursive;
  margin-bottom: 10px;
}

.house p {
  text-align: left; 
  font-family: "Great Vibes", cursive;
  font-size: 19px;
} 
.house ul {
  list-style: disc;      
  padding-left: 20px;     
  margin: 10px 0;         
}


h4 {
  text-align: center;
  margin: 30px 0 20px;
}

.source-row a {
  color: #ffffff;      
  text-decoration: none;
  font-weight: bold;
}

.source-row a:hover {
  color: #797979;  
  text-decoration: underline;
}

.schedule-table {
  margin: 0 auto 50px;
  border-collapse: collapse;
  width: 80%;
  background-image: url("background.png");
  background-size: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.schedule-table th, .schedule-table td {
  border: 1px solid #000;
  padding: 10px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8); 
}

.schedule-table th {
  background-color: rgba(1, 1, 1, 0.7);
  color: #fff;
}

.schedule-table td img {
  max-width: 100px;
  height: auto;
}


.schedule-table tr:hover {
  background-color: rgba(130, 127, 127, 0.3);
}

footer {
  bottom: 0;            
  left: 0;
  width: 100%;         
  background-color: #000; 
  color: #b8b7b7;
  text-align: center;
  padding: 15px 0;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.5); 
  z-index: 1000;
}
