body {
  margin:0;
  padding:0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

section {
    max-width: 800px;
    margin: 40px auto;   /* consistent vertical spacing */
    padding: 0 20px;     /* clean side padding for mobile */
}

h1,h2,h3 {text-transform: uppercase;text-align: center;}

a {
    color: black;
text-decoration: underline;
font-weight:bold;
}

a:hover {
    text-decoration: underline;
}

p {text-align: center;}

/* NAV */
.slv-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #ff8314;
  border-bottom: 3px solid #ffb6d9;
}

#whatsnew-banner {
    position: relative;
}

#close-banner {
    position: absolute;
    right: 12px;
    top: 8px;
    cursor: pointer;
    font-size: 1.1rem;
}

.orange-text {
    color: orange !important;
}


.mascot {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.nav-logo {
  height: 45px;
}

.nav-title {
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

/* HERO */
.slv-hero {
  background: linear-gradient(#ff8314, #fff);
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #ff8314;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* Hero CTA Wrapper */
.hero-cta {
    text-align: center;
    margin: 25px 0;
}

/* CTA Button */
.hero-cta .button {
    display: inline-block;
    background: #ff9933;          /* SLV orange */
    color: #fff;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover Effect */
.hero-cta .button:hover {
    background: #e6852d;          /* darker orange */
    transform: translateY(-2px);
}

/* Mobile Friendly */
@media (max-width: 600px) {
    .hero-cta .button {
        width: 90%;
        padding: 14px 0;
        font-size: 1.15rem;
    }
}


.hero-mascot1 {
  position: absolute;
  left: 20px;
  bottom: 0;
  height: 180px;
}

.hero-mascot2 {
  position: absolute;
  right: 20px;
  bottom: 0;
  height: 180px;
}

.slv-nav-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #ff8314;
text-transform: uppercase;

  border-radius: 8px;
  padding: 14px 10px;
  margin: 0 auto;
  max-width: 900px;
}

.slv-nav-block a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-family: Arial, sans-serif;
  padding: 6px 10px;
  transition: 0.2s;
}

.slv-nav-block a:hover {
  background: white;
  color: #ff8314;
  border-radius: 4px;
}


/* SECTIONS */
.slv-section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

.slv-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #ff8314;
}

.slv-section-text {
  max-width: 650px;
  margin: auto;
text-align:left;
}

.tick-list {
    list-style: none;
    padding-left: 0;
}

.tick-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Orange tick */
.tick-list li::before {
    content: "✔";
    color: #ff8314; /* your orange */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* White rounded container like the rest of SLV */
.staff-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

/* Two-column layout */
.staff-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: center;
}

.soft-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px 0;
}

/* Image column */
.staff-photo img {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
margin-bottom: 10px;
}

/* Text column */
.staff-info h3 {
    margin-top: 0;
    color: #ff8314; /* SLV orange */
}

.staff-info p {
    margin: 0;
    line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 700px) {
    .staff-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .staff-info {
        margin-top: 10px;
    }
}


/* Matches your white rounded SLV content boxes */
.slv-video {
 background: #fdf7e6;
    border: 2px solid #f3e4c2;
color: #333;
    padding: 30px;
    border-radius: 12px;
margin-top: 10px;
    max-width: 750px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.slv-video h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #ff8c00; /* SLV orange */
}

.slv-divider {
    text-align: center;
 margin-top: 50px;
 margin-bottom: 50px;

}

.slv-divider img {
    width: 60px;          /* perfect size for SLV */
    height: auto;
    display: inline-block;
    opacity: 0.95;        /* soft, not harsh */
}


/* Responsive video container */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

/* Responsive iframe */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.slv-button {
    display: inline-block;
    background: #ffffff;
    color: #ff8314;
    border: 2px solid #ff8314;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s ease;
}

/* Active (clicked) state */
.slv-button:active,
.slv-button.active {
    text-decoration: underline;
}


/* ABOUT */
.about-grid {
align:center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
width:700px;
}

.about-photo {
    border-radius: 10px;
}

/* CLASSES */
.class-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.class-card {
  background: #ff8314;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 250px;
  border: 2px solid #ffd1e8;
}

.class-card img {
  height: 100px;
}

/* MASCOTS */
.mascot-row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.slv-header{background-color: #ff8314; padding: 15px;text-align: center;}

.mascot-row img {
  height: 120px;
}

.header-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.header-social img {
  height: 32px;
  width: 32px;
  border-radius: 8px;
}

.header-social img:hover {
  opacity: 0.7;
}

/* LOCATION */
.map-box iframe {
  width: 95%;
  height: 250px;
  border: none;
  border-radius: 10px;
}

.info-box {
  margin-top: 20px;
  background: #ff8314;
  padding: 15px;
  border-radius: 10px;
}

/* FOOTER */
.slv-footer {
  text-align: center;
  c
  background: #ff8314;
}

.footer-logo {
  height: 50px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: white;
  color: #ff8314;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
font-weight : bold;
text-transform: uppercase;
}

#myBtn:hover {
  background-color: red;
}

.important-info {
    background: #fdf7e6; /* soft pastel cream */
    border: 2px solid #f3e4c2;
    padding: 20px;
    border-radius: 12px;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.important-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #444;
    text-align: center;
}

.important-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-info ul li {
    font-size: 1.1rem;
    margin: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #333;
}

.important-info ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #e6a800; /* warm SLV yellow */
    font-weight: bold;
}

/* 404 Page */
.slv-404 {
    text-align: center;
    padding: 60px 20px;
}

.slv-404 h1 {
    font-size: 2rem;
    color: #ff9933;
    margin-bottom: 15px;
}

.slv-404 p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
}

.slv-404-mascot img {
    width: 160px;
    margin-bottom: 25px;
}

.slv-404-button {
    display: inline-block;
    background: #ff9933;
    color: #fff;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slv-404-button:hover {
    background: #e6852d;
    transform: translateY(-2px);
}

/* Full-width footer bar */
.slv-footer {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #ddd;
  padding: 20px 0;
  text-align: center;
  display: block;
}

/* Centre content container */
.slv-footer-inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Links */
.slv-footer a {
  color: #333;
  text-decoration: none;
  display: inline-block;

  font-size: 14px;
text-decoration:underline;
text-transform:uppercase;
}

.slv-footer a:hover {
  text-decoration: underline;
}

/* Social icons */
.slv-footer-social a {
  font-size: 22px;
  margin: 0 8px;
}

/* Copyright */
.slv-footer-copy {
  margin-top: 6px;
  font-size: 13px;
  color: #555;
}

/* Page container */
.slv-disclaimer-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 20px 20px;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.2;
}

/* Headings */
.slv-disclaimer-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.slv-disclaimer-container h2 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #444;
}

/* Paragraphs */
.slv-disclaimer-container p {
  margin-bottom: 15px;
}

/* Lists */
.slv-disclaimer-container ul {
  margin: 10px 0 20px 20px;
}

.slv-disclaimer-container li {
  margin-bottom: 6px;
}

