/*
Theme Name: etsi-child
Template: Impreza
Version: 1.0
Author: UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

@font-face {
  font-family: 'sarchung';
  src: url('/wp-content/uploads/2025/09/qomolangma-uchensarchung-webfont.woff2') format('woff2'),
       url('/wp-content/uploads/2025/09/qomolangma-uchensarchung-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  /* Tibetan block */
  unicode-range: U+0F00-0FFF;
}

@font-face {
  font-family: 'sarchen';
  src: url('/wp-content/uploads/2025/09/qomolangma-uchensarchen-webfont.woff2') format('woff2'),
       url('/wp-content/uploads/2025/09/qomolangma-uchensarchen-webfont.woff') format('woff'); 
	font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0F00-0FFF;
}


@font-face {
    font-family: 'himalaya';
    src: url('fonts/himalaya-webfont.woff2') format('woff2'),
         url('fonts/himalaya-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sarchen';
    src: url('fonts/qomolangma-uchensarchen-webfont.woff2') format('woff2'),
         url('fonts/qomolangma-uchensarchen-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family:'Qomolangma-UchenSarchen';
    src:url('fonts/Qomolangma-UchenSarchen.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family:'Qomolangma-UchenSarchung';
    src:url('fonts/Qomolangma-UchenSarchung.ttf');
    font-weight: normal;
    font-style: normal;
}








/* Section wrapper */
.event-shield-section {
  margin: 40px 0;
  font-family: Georgia, serif;
}

/* Header with "See all events" */
.event-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.event-shield-title {
  font-size: 28px;
  font-weight: bold;
  color: #0C2340;
}
.see-all-link {
  font-size: 16px;
  color: #0C2340;
  text-decoration: none;
  font-weight: bold;
}
.see-all-link:hover {
  text-decoration: underline;
}

/* Event List */
.event-shield-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Event Item */
.event-shield-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Shield Badge (date) */
.event-shield-badge {
  background: #C99700;
  color: #0C2340;
  font-weight: bold;
  width: 65px;
  height: 80px;
  border-radius: 0 0 50% 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.event-shield-badge .month {
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.2;
}
.event-shield-badge .day {
  font-size: 22px;
  line-height: 1.2;
}

/* Event Title inline with badge */
.event-shield-link {
  font-size: 18px;
  color: #0C2340;
  text-decoration: none;
  font-weight: 500;
  flex: 1;
}
.event-shield-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .event-shield-title { font-size: 22px; }
  .event-shield-badge { width: 55px; height: 70px; }
  .event-shield-link { font-size: 16px; }
}

/*Login by Sam*/
/*styling for the login by sam*/

/* Remove WP default box styling */
body.login #login {
  all: unset;
}

/* Center the wrapper on the page */
body.login {
  background: #f5f5f5;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main wrapper: 20% smaller view + rounded + shadow */
.custom-login-wrapper {
  display: flex;
  width: 80%; /* 20% smaller than full width */
  max-width: 1000px;
  min-height: 80vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden; /* keep corners clean */
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Left: Login column */
.custom-login-wrapper .login-column {
  flex: 1;
  background: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.custom-login-wrapper .login-column h2 {
  font-size: 2rem;
  color: #012269;
  margin-bottom: 20px;
}

/* Right: Register column */
.custom-login-wrapper .register-column {
  flex: 1;
  background: #012269;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  text-align: center;
}
.custom-login-wrapper .register-column h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.custom-login-wrapper .register-column p {
  margin-bottom: 20px;
}
.custom-login-wrapper .register-btn {
  background: #fff;
  color: #012269;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}
.custom-login-wrapper .register-btn:hover {
  background: #f5f5f5;
}

/* WP form inside login column */
body.login form {
  width: 100% !important;
  margin: 0 !important;
}
body.login form input[type="text"],
body.login form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
body.login form .button-primary {
  width: 100%;
  padding: 12px 0;
  border-radius: 30px;
  background: #012269;
  border-color: #012269;
  font-size: 16px;
  color: #fff;
}

/* Remove default message area */
body.login #login > p.message {
  display: none !important;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .custom-login-wrapper {
    flex-direction: column;
    width: 90%;
    min-height: auto;
  }
  .custom-login-wrapper .login-column,
  .custom-login-wrapper .register-column {
    padding: 30px;
  }
}
