/* ✅ Global Settings */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ✅ Fix Header Navigation */
.header {
    background-color: #2c3e50;
    padding: 10px 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ✅ Navigation Bar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.navbar-nav {
    list-style: none;
    display: flex;
    gap: 20px;
}
.navbar-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

/* ✅ Style "RK Holding" text to be white */
.navbar-brand {
    color: white !important;
    font-size: 1.5em;
    text-decoration: none;
    font-weight: bold;
}
.navbar-brand:hover {
    text-decoration: underline;
}

/* ✅ Language Switcher */
.language-switcher {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1000;
    background: rgba(44, 62, 80, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
}
.language-switcher a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 8px;
}
.language-switcher a:hover {
    text-decoration: underline;
}

/* ✅ Fix Hero Sections */
.hero, .nootropics-banner, .contact-banner {
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* ✅ Background Images for Hero Sections */
.hero {
    background: url('../images/hero.jpg') no-repeat center center/cover;
}
.nootropics-banner {
    background: url('../images/nootropics-banner.jpg') no-repeat center center/cover;
}
.contact-banner {
    background: url('../images/contact-background.jpg') no-repeat center center/cover;
}

/* ✅ Dark Overlay */
.hero::before, .nootropics-banner::before, .contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* ✅ Ensure Hero Text is Visible */
.hero-text, .nootropics-banner p, .contact-banner p {
    position: relative;
    z-index: 2;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ✅ Fix Content Layout */
.content, .about, .contact {
    padding: 40px 20px;
    text-align: center;
}

/* ✅ Buttons */
.btn {
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
}
.btn:hover {
    background-color: #cc5500;
}

/* ✅ Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* ✅ Responsive Fixes */
@media (max-width: 768px) {
    .hero, .nootropics-banner, .contact-banner {
        height: 40vh; /* Adjust hero size for mobile */
    }
    .hero-text, .nootropics-banner p, .contact-banner p {
        font-size: 1.5em;
    }
}

/* ✅ Parallax Effect for Desktop */
@media (min-width: 1024px) {
    .hero, .nootropics-banner, .contact-banner {
        background-attachment: fixed;
    }
}

/* ✅ Disable Parallax on Mobile */
@media (max-width: 1024px) {
    .hero, .nootropics-banner, .contact-banner {
        background-attachment: scroll;
        background-size: cover;
    }
}
/* ✅ Default Styling for Desktop */
.navbar-brand {
    color: white !important;
    font-size: 1.8em;  /* Standard size */
    text-decoration: none;
    font-weight: bold;
}

/* ✅ Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .navbar-brand {
        font-size: 1.5em;
    }
}

/* ✅ Small Screens (Mobile) */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2em;
    }
}

/* ✅ Very Small Screens (Phones) */
@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1em;  /* Smaller but still readable */
    }
}
