@font-face {
  font-family: 'Shrikhand';
  src: url('fonts/Shrikhand.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFF8F0;
    font-family: 'Nunito', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */
.header {
    width: 100%;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.header-logo {
    background-color: white;
    display: flex;
    justify-content: center;
    padding: 16px 0 12px 0;
}

.logo-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid white;
    animation: bounce 1s ease 0.5s both;
}

.header-banner {
    width: 100%;
}

/* Hidden by default*/
.banner-slide {
    display: none;
    width: 100%;
    max-height: 650px;
    object-fit: contain;
    animation: fadeIn 0.6s ease;
}

/* JS adds this to show the active one — exactly like .featured-card.active */
.banner-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ========================
   NAVIGATION BAR
   ======================== */
#nav {
    width: 100%;
    background-color: white;
    border: 1px solid #d0d0d0;
    display: flex;
    gap: 4px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    position: sticky;   /* sticks in place*/
    top: 0;             /* where it sticks */
}


#nav a {
    font-family: 'Shrikhand';
    font-size: 15px;
    font-weight: 600;
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 2px;
}

#nav a:hover {
    background-color: #D81D34;
    color: #FFFFFF;
}

/* ========================
   MAIN (Iframe wrapper)
   ======================== */
.main {
    flex: 1;
    width: 100%;
    min-height: 900px;
    background-color: white;
}

.main iframe {
    display: block;
    margin-top: 10vh;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
}

/* ========================
   FOOTER — Three-column layout
   ======================== */
.footer {
    width: 100%;
    background-color: black;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: space-between; /* keeps left, center, right aligned */
    padding: 20px 40px;             /* larger padding for breathing room */
    gap: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;                /* slightly larger text */
    position: relative;             /* ensures it stays in flow, not overlapped */
    z-index: 10;                    /* keeps it above slider if needed */
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 18px;                      /* more spacing between icons/text */
    font-size: 16px;                /* larger for readability */
}

.social-icon {
    width: 28px;                    /* bigger icons */
    height: 28px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 1;
}

.footer-center {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 15px;                /* larger center text */
}

.tiktok-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: #D81D34;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;                /* slightly larger button text */
    padding: 9px 22px;              /* bigger button size */
    border-radius: 20px;
    transition: background-color 0.2s ease;
}

.tiktok-btn:hover {
    background-color: #a61527;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1.6;
    font-size: 15px;                /* larger contact info */
}
