/* Color Variables */
:root {
    --black: #000000;
    --off-white: #e0e0e0;
    --light-grey: #dadada;
    --logo-color: #deddff;
    --copper: #b87333;
    --silver: #c0c0c0;
    --deep-blue: #1e90ff;
      --brand:#e7b44b; --brand-2:#5cc8ff; --stroke:rgba(255,255,255,.08);
}

/* General Styles */
html { background: var(--bg); scroll-padding-top: 55; }
html, body { height: 100%; }
body {
  margin: 0; color: var(--text);
  font-family: 'Lato', sans-serif;
  line-height: 1.35;
  min-height: 100dvh;
  padding-top: 55px;        
  position: relative;               
}


.btn{padding:10px 16px; border-radius:999px; border:2px solid var(--stroke);
     background:rgba(255,255,255,.02); color:var(--text); font-weight:600; text-decoration:none; display:inline-block}

     .btn:hover{transform:translateY(-1px)}

.btn.gold{background:linear-gradient(135deg, var(--brand), #ffd98a); color:#1a1a1a; border:none}





/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(0, 0, 0);
    color: white;
}

h1, h2 {
    font-family: 'Georgia', serif; /* Traditional serif font */
    color: #9f7200;
}

/* Adjusted Iframe Section */
.iframe-section {
    padding: 20px;
    background-color: #000000;
    min-height: 800px;
    margin-top: 0px; /* Increased margin to create space below the sub-menu */
}

iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px; /* Reduced margin to align closely with the sub-menu */
}



.sub-menu {
    position: sticky;
    font-family: 'Georgia', serif;
    top: 64px; /* Ensures it's positioned correctly just below the navbar */
    background-color: transparent;
    z-index: 1000;
    padding: 5px 0; /* Slightly increased padding */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

.sub-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;   /* allows wrapping on small screens instead of stacking */
}

.sub-menu ul li a {
    color: #cfcfcf;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: transparent;
    transition: color 0.3s, background-color 0.3s;
    position: relative;
    font-size: 0.9em;
}

.sub-menu ul li a:hover {
    background-color: #333;
    color: #fff;
}

.sub-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background-color: #222; /* Same color as the text */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.sub-menu ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* Footer */

/* Base Footer Styles */
footer {
    background-color: var(--black);
    color: var(--off-white);
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid var(--silver);
    font-size: 80em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer a {
    color: var(--copper);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    text-decoration: underline;
    color: var(--deep-blue); /* Adds a slight color change on hover */
}

/* Footer Content Container */
.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li {
    margin: 0 5px;
}

.footer-links a {
    font-size: 0.9em;
}

/* Mobile-first approach is already provided */

/* Medium screens (tablets, 768px and up) */
@media (min-width: 768px) {
    .iframe-section {
        padding: 30px;
        min-height: 700px;
        margin-top: 0px;
    }

    iframe {
        margin-top: 30px;
        height: 600px;
    }
}

/* Large screens (desktops, 992px and up) */
@media (min-width: 992px) {
    .iframe-section {
        padding: 40px;
        min-height: 900px;
        margin-top: 0px; 
    }

    .sub-menu {
        top: 64px;
    }

    .sub-menu ul li a {
        padding: 1px 6px;
    }

    iframe {
        margin-top: 40px;
        height: 750px;
    }

}

/* Extra-large screens (1600px and up) */
@media (min-width: 1600px) {
    .iframe-section {
        padding: 60px; /* Increased padding for better spacing */
        min-height: 1100px; /* Higher min-height for large displays */
        margin-top: 0px; /* Consistent spacing below the sub-menu */
    }

    iframe {
        margin-top: 50px;
        height: 1000px; /* Taller iframe for extra-large screens */
    }
}

/* Small screens (max-width: 600px) */
@media (max-width: 600px) {
    .iframe-section {
        padding: 15px;
        min-height: 600px;
        margin-top: 30px;
    }

    iframe {
        margin-top: 20px;
        height: 500px;
    }

}


/* Small screens (max-width: 600px) */
@media (max-width: 600px) {
    footer {
        padding: 15px 20px;
        font-size: 0.50em;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Medium screens (600px to 992px) */
@media (min-width: 600px) and (max-width: 992px) {
    footer {
        padding: 20px 30px;
        font-size: 0.70em;
    }

    .footer-content {
        justify-content: space-around;
    }
}

/* Large screens (992px and up) */
@media (min-width: 992px) {
    footer {
        padding: 25px 50px;
        font-size: 0.80em;
    }

    .footer-content {
        justify-content: space-between;
    }
}

/* Extra large screens (1200px and up) */
@media (min-width: 1200px) {
    footer {
        padding: 30px 60px;
    }

    .footer-content {
        max-width: 1400px;
    }
}