:root {
    --color1: #CAF0F8;
    --color2: #90E0EF;
    --color3: #00B4D8;
    --color4: #0077B6;
    --color5: #03045E;
    /* The default color of the main navmenu links */
    --nav-hover-color: #03045E;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #90E0EF;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #90E0EF;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #90E0EF;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0078ff;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */

    --default-font: "Radley", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Quicksand", sans-serif;
    --nav-font: "Radley", sans-serif;

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
    --background-color: #CAF0F8;
    /* Background color for the entire website, including individual sections */
    --default-color: #03045E;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #0077B6;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0077B6;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #CAF0F8;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
    --nav-color: #03045E;
    /* The default color of the main navmenu links */
    --nav-hover-color: #0077B6;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #CAF0F8;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #CAF0F8;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #03045E;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0078ff;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
}

.light-background {
    --background-color: #90E0EF;
    --surface-color: #CAF0F8;
}

.dark-background {
    --background-color: #03045E;
    --default-color: #CAF0F8;
    --heading-color: #CAF0F8;
    --surface-color: #03045E;
    --contrast-color: #CAF0F8;
}

/* Header / Hero */
.header {
    --background-color: #CAF0F8;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--color5);
}

.hero {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* about */
.about .container {
    border-radius: 8px;
    background-color: var(--color4);
}

.about-img-holder {
    border: 4px solid var(--color5);
    border-radius: 22px;
    min-width: auto;
    min-height: auto;
    padding: 0;
    overflow: hidden;
}

.about-img {
    min-height: 300px;
    min-width: 600px;
}

/* History */ 

.history-img {
    border: 4px solid var(--color5);
    border-radius: 8px;
}

.resume .area {
    background-color: var(--color4) !important;
}

/* Mediums */

.services {
    background-color: var(--color4);
}

.accoridon-img {
    border-radius: 8px;
    border: 4px solid var(--color5);
}


/* Gallery */

.carousel {
    border-radius: 8px;
    border: 4px solid var(--color5);
}

.carousel-caption {
    font-family: "Radley", sans-serif;
    font-weight: 3px;
    background-color: rgba(0, 119, 182, 50%);
    border: 4px solid var(--color5);
    border-radius: 8px;
    padding: 0;
}

.carousel-caption h5 {
    font-family: "Radley", sans-serif;
    font-size: 72px;
}

/* General */

.section-title-alt {
    font-family: "Quicksand", sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-decoration: underline;
    text-align: center;
    color: var(--color2);
}

.section-title {
    font-family: "Quicksand", sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-decoration: underline;
    text-align: center;
    color: var(--color4);
}

.section-text {
    text-align: left;
    font-family: "Radley", sans-serif;
    font-weight: 3px;
    padding-top: 20px;
    color: var(--color2)
}

.section-text-alt {
    text-align: left;
    font-family: "Radley", sans-serif;
    font-weight: 3px;
    padding-top: 20px;
    color: var(--color2)
}

.sitename .logo{
    color: var(--color2)
}

/* footer */
.footer {
    background-color: var(--color4);
    color: var(--color2);
    font-family: "Quicksand", sans-serif;
}