/* ===== CSS Variables for Hindu Theme ===== */
:root {
    --primary-color: #8B0000; /* Deep Maroon */
    --secondary-color: #FFA500; /* Saffron */
    --accent-light: #FFF8E1; /* Soft beige */
    --white: #ffffff;
    --gray: #f5f5f5;
    --text-color: #4B2E2E;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
    --font-family: 'Georgia', serif;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--accent-light);
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
}

/* ===== Header ===== */
header {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}


.branding {
    padding: 10px 10px 10px;
}
.branding h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.branding p {
  font-size: 0.85rem;
  color: #fdd;
  margin-top: 4px;
}

.logo {
    display: flex;
    align-items: center;
}
/* 
.logo img {
    height: 100px;
    margin-right: 1rem;
} */

.logo-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
}
.header-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


.header-buttons button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.login-btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.login-btn:hover {
    background-color: #eee;
}

.register-btn {
    background-color: var(--secondary-color);
    color: var(--white);
}

.register-btn:hover {
    background-color: #e59400;
}

/* ===== Layout Container ===== */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

/* ===== Left Section ===== */
.left-section {
    flex: 1;
    min-width: 320px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.left-section h2 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.left-section ul,
.left-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.contact-box {
    margin-top: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== Right Section (Form) ===== */
.right-section {
    flex: 1;
    min-width: 320px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.right-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

/* ===== Form Styling ===== */
form {
    display: flex;
    flex-direction: column;
}

form input,
form select,
form textarea {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

form button {
    padding: 0.75rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

form button:hover {
    background-color: #e59400;
}

/* ===== Footer ===== */


.footer {
  background: #880000;
  color: white;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}
/* ===== Responsive Typography ===== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .container {
        flex-direction: column;
        padding: 1rem;
    }

    .left-section,
    .right-section {
        width: 100%;
    }

    .header-buttons {
        margin-top: 1rem;
    }



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

    .footer-section {
        margin-bottom: 1rem;
    }


    
}
