/* ===============================
   FOOTER
================================*/

.footerMainDiv {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;

}
.footerMainDiv > div {
    flex: 1;
}


/* ===============================
   HEADER / NAVIGATION
================================*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #8B3A3A;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

nav a {
    color: white;
    margin-left: 30px;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
}


/* ===========================
    Abous us / Footer Grid
 ============================*/

.aboutUs-column {
    text-align: left; /* Text aligns to the left */

}
.aboutUs-column-text {
    text-align: center;
    font-family: Arial, serif;
    font-weight: normal;
}


/* ===========================
    Socials / Footer Grid
 ============================*/


.socials-column-row {
    display: flex;
    align-content: center;
    align-items: center;

}
.socials-column-text-box {
    align-content: center;
    text-align: center;
}
.socials-column-text-box h1 {
    margin: 0;
}
.social-media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===========================
    Contact info / Footer Grid
 ============================*/

.contact-container {

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
/* ===============================
   DROPDOWN NAV
================================*/

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: white;
    font-size: 17px;
    margin-left: 30px;
    cursor: pointer;
    user-select: none;
}

/* Dropdown box */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 30px;
    background-color: #8B3A3A;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 1000;
}

/* Dropdown links */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    font-size: 16px;
}

/* Hover effects */
.dropdown-content a:hover {
    background-color: rgba(255,255,255,0.15);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Keep hover style consistent */
.dropdown:hover .dropbtn {
    opacity: 0.7;
}
.logo a {
    color: white;
    text-decoration: none;
}

.logo a:hover {
    opacity: 0.8;
}
/* ===============================
   LOGO
================================*/

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 40px;          /* KEY: controls navbar height */
    width: auto;
}

.logo-text {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* ===============================
   HEADER HEIGHT CONTROL
================================*/

header {
    min-height: 70px;
    padding: 15px 50px; /* reduced vertical padding */
}

nav {
    display: flex;
    align-items: center;
}

/* Prevent dropdown from increasing header height */
.dropdown {
    display: flex;
    align-items: center;
}
