/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

header {
    background-color: var(--bg-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.site-branding .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--text-color);
}

.site-description {
    font-size: 1rem;
    color: var(--text-color);
}

/* Menu Styling */
.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #00BFFF;
}

/* Register Button Styling */
.register-button-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.register-button {
    background-color: #ff5b5b;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 91, 91, 0.3);
}

.register-button:hover {
    background-color: #ff4747;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 71, 71, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Adjustments for buttons */
.theme-toggle, .register-button {
    border-radius: 20px;
    cursor: pointer;
}

.theme-toggle:hover, .register-button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Home Section Styles */
#home-section {
    background-color: #1e3c72; /* Add your desired background color */
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Optionally, add background opacity */
#home-section {
    background-image: url('path-to-your-background-image.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    opacity: 0.9; /* You can adjust opacity */
}

