/*
COLORS:

Light Blue: #414A7C
Medium Blue: #414A7C
Dark Blue: #414A7C

Light Orange: #EBCAAD
Medium Orange: #E0AE81
Dark Orange: #DB9F6B

*/

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    /* Set root font-size to 10px (62.5% of 16px) for easy rem math */
    font-size: 62.5%;

    /* Offset scroll snapping and anchor scrolling by navbar height */
    scroll-padding-top: 64px;
    /* Adjust to your fixed navbar height */
}


body {
    font-family: "Karla", sans-serif;
    font-weight: 400;
    /* font-size: 1.6rem; */
    line-height: 1.7;
    color: #777;

    box-sizing: border-box;
}

/*
NAVBAR
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    background-color: transparent;
    /* Make header background transparent */
    transition: all 0.3s ease;
    padding: 0 0 1.5rem 0;
    box-shadow: none;
    /* Remove shadow from whole header */
}

/* New wrapper for content */
.content-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 11rem;
    /* Helps with moving all but navbar lower */
}

/* Make navbar section the white background with shadow */
.navbar-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .2);
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smaller navbar on scroll */
.header.scrolled .navbar-section {
    padding: 0.7rem 2rem;
}

.navbar-section a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    height: 3rem;
}

.logo-name {
    color: #333;
    font-weight: 600;
    font-size: 3rem;
    padding-left: 1.5rem;
    /* padding-top: 1rem; */
}

.navbar-list {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
    align-items: center;
}

.navbar-list li {
    padding: 1rem 2rem;
    position: relative;
    /* Needed for dropdown positioning */
}

.navbar-list li:hover a,
.navbar-list li:active a {
    /* color: #DB9F6B; */
    transition: all 0.3s ease;
}

.navbar-list li.last-contact {
    background-color: #414A7C;
    border-radius: 2.4rem;
    padding: 1rem 2rem;
}

.navbar-list li.last-contact a {
    color: #fff;
}

.navbar-list li.last-contact:hover a,
.navbar-list li.last-contact:active a {
    color: #DB9F6B;
}

.navbar-list li.last-contact:hover,
.navbar-list li.last-contact:active {
    background-color: #000;
    border-radius: 2.4rem;
    padding: 1rem 2rem;
}

/* Dropdown container */
.navbar-list li.dropdown {
    position: relative;
    cursor: pointer;
}

.dropbtn.nav-link {
    background: none;
    border: none;
    color: #414A7C;
    font-weight: 600;
    font-size: 1.75rem;
    text-transform: uppercase;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.dropdown-back {
    display: none;
}

.arrow {
    transition: transform 0.3s;
    font-size: 1.75rem;
}

.dropdown.open .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    /* padding: 0.5rem 0; */
    z-index: 1000;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0;
}

.dropdown.open .dropdown-content {
    display: flex;
}

.dropdown-content li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #414A7C;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.dropdown-content li a:hover,
.dropdown-content li a:focus {
    background-color: #DB9F6B;
    color: #fff;
}

.back-btn {
    background: none;
    /* Modern background and border */
    background: linear-gradient(90deg, #e8eaf6 0%, #f5f6fa 100%);
    border: none;
    color: #414A7C;
    font-weight: 600;
    font-size: 1.75rem;
    text-transform: uppercase;
    padding: 1.1rem 2.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    border-radius: 2.4rem;
    /* Soft pill shape */
    box-shadow: 0 4px 12px rgba(65, 74, 124, 0.06);
    transition:
        background 0.2s,
        box-shadow 0.2s,
        color 0.15s;
}

/* SLOGAN */
.slogan-section {
    position: relative;
    background: linear-gradient(96deg,
            #DB9F6B 25%,
            /* Dark Orange */
            #EBCAAD 45%,
            /* Light Orange */
            #ABD9FF 75%
            /* Soft Sky Blue */
        );
    box-shadow: 0 0 32px rgba(219, 159, 107, 0.2), 0 0 14px rgba(171, 217, 255, 0.18);
    /* Remove transparency in colors */
    border-bottom: 2px solid #414A7C;
    padding: 1.1rem 0;
    text-align: center;
    font-family: "Karla", sans-serif;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}


/* Overlay with partial transparency */
.slogan-section::before {
    content: '';
    position: absolute;
    top: -65%;
    left: -65%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    /* semi-transparent white overlay */
    transform: rotate(45deg);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(.6, .1, .4, 1.1);
    z-index: 0;
}

/* On hover, remove the overlay to reveal full color */
.slogan-section:hover::before {
    background: rgba(255, 255, 255, 0);
    /* fully transparent */
    top: -120%;
    left: -120%;
    opacity: 0.3;
    /* Optional gentle fade out */
}

.slogan-section::after {
    content: '';
    position: absolute;
    top: -65%;
    left: -35%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(315deg);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(.6, .1, .4, 1.1);
    z-index: 0;
}

.slogan-section:hover::after {
    left: 40%;
}

/* Intensify shadow on hover */
.slogan-section:hover {
    box-shadow: 0 0 48px rgba(153, 247, 255, 0.23);
}

/* Keep slogan text above everything */
.slogan-text {
    position: relative;
    z-index: 1;
    color: #414A7C;
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    user-select: none;
}


/* Smaller header and slogan when scrolled */
.header.scrolled {
    /* padding: 0.5rem 0; */
    /* box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.15); */
}

.header.scrolled .slogan-section {
    padding: 0.3rem 0;
    border-bottom-width: 1px;
}

.header.scrolled .slogan-text {
    font-size: 1.5rem;
}

/* MOBILE */

.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;

    display: none;
}

.icon-mobile-nav {
    height: 3rem;
    width: 3rem;
    color: #333;
}

.icon-mobile-nav[name="close-outline"] {
    display: none;
}

.navbar-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.75rem;
    text-transform: uppercase;
    border-radius: 2rem;
}

/*
HERO SECTION
*/

.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;

    min-height: 80vh;
    padding: 4rem 3rem 4rem;
    /* generous padding for breathing room */
    box-sizing: border-box;
    text-align: center;

    color: #F0F0F0;
    /* Background image and overlay */
    background-image:
        linear-gradient(rgba(65, 74, 124, 0.75), rgba(65, 74, 124, 0.75)),
        url('/static/images/background-image.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;


}

.hero-text-main {
    font-size: 8.5rem;
    font-weight: 400;
    padding-top: 0;
    margin: 0;
    /* reset margin for better control */
    width: 100%;
}

.hero-text-sub {
    font-size: 2rem;
    margin: 0;
    padding: 1rem 3rem 0;
    line-height: 1.2;
    width: 100%;
}

.hero-cta-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem;
}

.cta-button-header {
    display: inline-block;
    background: linear-gradient(90deg, #EBCAAD, #E0AE81, #DB9F6B);
    color: white;
    font-weight: 700;
    font-size: 2rem;
    padding: 1rem 2rem;
    border-radius: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(219, 174, 107, 0.6);
    transition: background-position 0.5s ease, box-shadow 0.4s ease, transform 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    background-position: left center;
    /* margin-bottom: 4rem; */
}

/* Animate the gradient sliding on hover/focus */
.cta-button-header:hover,
.cta-button-header:focus {
    background-position: right center;
    box-shadow: 0 6px 24px rgba(219, 174, 107, 0.9);
    transform: scale(1.05);
    outline: none;
}

/* Optional: subtle shining overlay effect */
.cta-button-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 8px;
}

.cta-button-header:hover::before,
.cta-button-header:focus::before {
    opacity: 1;
    animation: shineMove 1.5s linear infinite;
}

@keyframes shineMove {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }

    100% {
        transform: translateX(100%) rotate(25deg);
    }
}


.hero-text-sub {
    font-size: 2rem;
    margin: 0;
    padding: 1rem 3rem;
    line-height: 100%;
}

/*
Alert
*/
.alert {
    position: fixed;
    top: 70px; /* height of your fixed header */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    width: 80%;
    max-width: 600px;
    font-size: 1.25rem;
}

/*
Service Highlights
*/
.services-highlights {
    background-color: #EBF3FF;
    /* Pale blue background */
    max-width: 1100px;
    margin: 7rem auto;
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 1rem;
    /* Optional round corners */
    box-shadow: 0 4px 12px rgba(65, 74, 124, 0.1);
    /* Soft blue shadow */
}

.services-highlights h2 {
    font-family: "Karla", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #414A7C;
    /* ModeraWeb dark blue */
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-intro {
    font-family: "Karla", sans-serif;
    font-size: 1.8rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}


.service-block {
    display: inline-block;
    width: 28rem;
    margin: 1.5rem 1rem;
    vertical-align: top;
    text-align: center;
}

.service-block img {
    height: 6.5rem;
    margin-bottom: 1.9rem;
    filter: drop-shadow(0 2px 6px rgba(219, 174, 107, 0.2));
    /* subtle warm shadow */
}

.service-block h3 {
    font-family: "Karla", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #DB9F6B;
    /* ModeraWeb warm orange */
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.service-block p {
    font-family: "Karla", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
    padding: 0 1.2rem;
}

.service-block:hover,
.service-block:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(219, 159, 107, 0.3);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}


/*
SAMPLES
*/

.samples-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 6rem 2rem;
    text-align: center;
}

.samples-main-title {
    font-family: "Karla", sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #414A7C;
    /* ModeraWeb dark blue */
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.samples-intro {
    font-family: "Karla", sans-serif;
    font-size: 1.8rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.sample-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(219, 159, 107, 0.15);
    /* subtle warm shadow */
    padding: 2rem 1.5rem 2.5rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.sample-item:hover,
.sample-item:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(219, 159, 107, 0.35);
}

.sample-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sample-item h3 {
    font-family: "Karla", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #DB9F6B;
    /* ModeraWeb warm orange */
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.sample-item p {
    font-family: "Karla", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

.btn-cta {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    margin-top: 1rem;
    background-color: #DB9F6B;
    /* ModeraWeb warm orange */
    color: white;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-cta:hover,
.btn-cta:focus {
    background-color: #b37a4a;
}

/* Testimonials */
.testimonial-carousel-section {
    max-width: 900px;
    margin: 4rem auto 6rem;
    padding: 6rem 2rem;
    background-color: #fff3e6;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(219, 159, 107, 0.2);
    text-align: center;
}

.testimonial-carousel-section h2 {
    font-family: "Karla", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #414A7C;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 2rem;
}

.testimonial-controls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.2em;
    margin-bottom: 2.4em;
}

.testimonial-container {
    flex: 1;
    max-width: 600px;
    margin: 0 1.5rem;
    font-family: "Karla", sans-serif;
    font-style: italic;
    color: #555;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
}

.testimonial-container p {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.testimonial-container img {
    display: block;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    width: 4.4em;
    height: 4.4em;
    object-fit: cover;
}

.testimonial-container h3 {
    color: #DB9F6B;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.testimonial-container h6 {
    color: #414A7C;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
}

/* Buttons */
.testimonial-wrapper button {
    background-color: #DB9F6B;
    border: none;
    color: white;
    font-size: 2rem;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(219, 159, 107, 0.5);
    transition: background-color 0.3s ease;
}

.testimonial-wrapper button:hover,
.testimonial-wrapper button:focus {
    background-color: #b37a4a;
    outline: none;
}

/*
PRICING
*/

.pricing-section {
    padding: 3rem;
}

.pricing-grid {
    padding-top: 10rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 10rem;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    padding: 5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f6f6f6, #ffffff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* This will push the button to the bottom */
    align-items: center;
    text-align: center;

    height: 100%;
    /* Ensure all cards have the same height */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    transform: scale(1.05);
    background: linear-gradient(145deg, #414A7C, #5A6495);
    color: white;
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.07) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #DB9F6B;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular .price .currency,
.pricing-card.popular .price .amount {
    color: #DB9F6B;
}

.pricing-card.popular .cta-button {
    background-color: #DB9F6B;
    color: #414A7C;
}

.pricing-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pricing-card h3 {
    font-size: 3rem;
}

.price-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0 0;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
}

.price .currency {
    color: #414A7C;
    /* Green color for the dollar sign */
    font-size: 2rem;
    /* Smaller font size for the currency */
    margin-top: 0.5rem;
    /* Adjust this value to align with the top of the number */
}

.price .amount {
    color: #414A7C;
    /* Color for the amount */
    font-size: 4rem;
}

.tier-description {
    font-size: 1.75rem;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.pricing-card li {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
    padding-left: 4.5rem;
    /* Increase padding slightly */
    display: flex;
    /* Use flexbox for better alignment */
    align-items: center;
    /* Vertically center the content */
}

.pricing-card li::before {
    content: "\2713";
    /* Unicode for a check mark */
    color: #00a86b;
    /* Green color for the check mark */
    position: absolute;
    left: 2.5rem;
    /* Move checkmark closer to text */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.75rem;
    /* Adjust size as needed */
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    /* Increased padding for a larger button */
    background-color: #DB9F6B;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.75rem;
    /* Increased font size for better readability */
    margin-top: auto;
    /* This will push the button to the bottom of the card */
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*
FORM
*/

.container-form {
    background-color: #F0F0F0;
    margin: 0;
    padding: 3rem 0;
    min-height: 100%;
}

.form-title {
    display: flex;
    justify-content: center;
    background-color: #F0F0F0;
    font-size: 7rem;
    font-weight: 400;
    padding-top: 3rem;
    color: #000;
}

/* .sample-main-text {
    font-size: 7rem;
    font-weight: 400;
    padding-top: 11rem;
    color: #000;
} */
.form {
    background-color: #F0F0F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
}

/* Django class in forms.py */
.form-fields {
    background-color: #fff;
    padding: 0.5rem 2rem 0.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    width: 35rem;
    font-size: 2rem;
    font-family: "Karla", sans-serif !important;
    /* Set the font size for the input text */
}

/* Styles for placeholder text */
.form-fields::placeholder,
.form-fields::-webkit-input-placeholder,
.form-fields::-moz-placeholder,
.form-fields:-ms-input-placeholder,
.form-fields:-moz-placeholder {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.8);
}

/* Ensure consistent styling when the input is focused */
.form-fields:focus {
    outline: none;
    /* Remove default focus outline */
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    /* Add a subtle focus indicator */
}

/* Adjust line height to center text vertically */
.form-fields,
.form-fields::placeholder,
.form-fields::-webkit-input-placeholder,
.form-fields::-moz-placeholder,
.form-fields:-ms-input-placeholder,
.form-fields:-moz-placeholder {
    line-height: 1.2;
    /* Adjust this value as needed */
}

/* recaptcha */
.g-recaptcha {
    display: flex;
    justify-content: center;
}

.form {
  text-align: center;
}

.submit-btn {
    display: flex;
    justify-content: center;
    font-size: 1.75rem;
    /* Reduced from 2rem for better proportions */
    margin-top: 1.5rem;
    /* Add some space above the button */
}

.submit-btn-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: #414A7C;
    color: #fff;
    border-radius: 2.4rem;
    border: none;
    padding: 1rem 3rem;
    /* Adjusted padding for better proportions */
    font-weight: 600;
    font-size: 2rem;
    text-transform: uppercase;
    cursor: pointer;
    /* Indicates the button is clickable */
    transition: all 0.3s ease;
    /* Smooth transition for all properties */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for depth */
}

.submit-btn-btn:hover,
.submit-btn-btn:focus {
    background-color: #000;
    color: #DB9F6B;
    transform: translateY(-2px);
    /* Slight lift effect on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow on hover */
}

.submit-btn-btn:active {
    transform: translateY(1px);
    /* Pressed effect */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    /* Reduced shadow when pressed */
}

.mini-icon {
    width: 1.2em;
    /* Size relative to font size */
    height: 1.2em;
}

/*
FOOTER
*/

.footer-section {
    background-color: #414A7C;
    color: #F0F0F0;
    padding: 15rem 0 5rem;
    /* Reduced bottom padding for mobile */
}

.navbar-logo-2 {
    display: flex;
    justify-content: space-evenly;
    gap: 4rem;
    /* Adjust spacing between logo and columns */
    flex-wrap: wrap;
    align-items: flex-start;
    /* Align top edges, since columns vary */
    padding: 2rem 1rem;
}


.logo-footer {
    height: 10rem;
    flex-shrink: 0;
    /* Prevent logo from shrinking */
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 12rem;
    /* Maintain column width */
    /* flex: 1 1 15rem; */
    /* Allow flexible width but keep minimum */
}

.footer-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #DB9F6B;
    /* Orange on hover */
}

/*
COPYRIGHT
*/
.copyright-container {
    display: flex;
    justify-content: center;

    text-align: center;

    color: #fff;
    background-color: #414A7C;
    ;
}

.copyright-container p {
    margin: 0;
    font-size: 1.4rem;
}