/* CSS Designs */

/* STYLE RESET */
    /* Removes any Pre-existing styles the browser had setup */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

/* FLEX POSITION */
    /* ROW */
        .row {
            display: flex;
            flex-wrap: wrap;
            /* gap: var(--gap, 10px); */
        }


    /* COLUMN */
    .col-1  { 
        flex: 0 1 8.333%; 
        min-width: 0;               /* removes the default that blocks shrinking below content size */
        overflow-wrap: normal;  /* lets long text wrap onto multiple lines instead of forcing width */
        min-width: 50px; 
    }
    .col-2  { 
        flex: 0 1 16.666%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-3  { 
        flex: 0 1 25%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-4  { 
        flex: 0 1 33.333%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-5  { 
        flex: 0 1 41.666%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-6  { 
        flex: 0 1 50%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-7  { 
        flex: 0 1 58.333%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-8  { 
        flex: 0 1 66.666%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-9  { 
        flex: 0 1 75%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-10 { 
        flex: 0 1 83.333%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-11 { 
        flex: 0 1 91.666%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }
    .col-12 { 
        flex: 0 1 100%; 
        min-width: 0;        
        overflow-wrap: normal;
        min-width: 50px;
    }

/* PAGE Setup */
.page-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* DIV POSITIONS */
.center-box {
    flex: 1;
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
}

/* DIV POSITIONS */
.footer-box {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;     /* vertical end */
    max-height: 200px;   /* Max CAP */
    overflow-y: auto;    /* vertical scroll once content exceeds max-height */
    overflow-x: auto;    /* only if you also expect horizontal overflow */
    margin-bottom: 5%;
    justify-content: safe center;

    /* TO remove the white bar and make scrollbar Thin */
    scrollbar-width: thin;              /* Firefox: thinner scrollbar */
    scrollbar-color: rgba(0,0,0,0.3) transparent;  /* Firefox: thumb color, track color */
}

.footer-box::-webkit-scrollbar {
    height: 6px;                        /* thin bar instead of the default chunky one */
    background: transparent;            /* ← this is what removes the white track */
}

.footer-box::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);        /* the gray draggable piece */
    border-radius: 10px;
}

.footer-box::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.5);        /* slightly darker on hover, nice touch */
}

/* Location Suggestion Box */
.loc-sug-box {
    max-height: 70vh; 
    overflow-y: auto;    /* vertical scroll once content exceeds max-height */ 
}


/* TEXT POSITIONS */
.text-center {text-align: center;}
.text-left {text-align: left;}
.text-left {text-align: right;}

/* SVG */
.info-main-icon {
    height:50px;
    width:50px;
    transition: transform 0.2s ease;
    filter: brightness(0) invert(1);
}

/* Main SElection hover */
.info-main-icon:hover {
transform: scale(1.3);
}

.search-icon {
    height:20px;
    width: 20px;
    transition: transform 0.2s ease;
    filter: brightness(0) invert(1);
}

/* Main SElection hover */
.search-icon:hover {
transform: scale(1.3);
}

/* SVG */
.about-dev {
        position: fixed;
    bottom: 12px;
    right: 12px;   /* or left: 12px, wherever you want it */
    z-index: 10;
    height:20px;
    width: 20px;
    transition: transform 0.2s ease;
    filter: brightness(0) invert(1);
}

/* Main SElection hover */
.about-dev:hover {
transform: scale(1.3);
}

.about-icon {
    height:30px;
    width: 30px;
    transition: transform 0.2s ease;
}

/* Main SElection hover */
.about-icon:hover {
transform: scale(1.3);
}

/* FONTS SIZE/SCALE */
/* FLUID TYPE SCALE (1 to 10) */

/* Micro Captions & Badges */
.hero1  { font-size: clamp(0.75rem, 1.2vw, 1rem); }       /* 12px -> 16px */
.hero2  { font-size: clamp(0.875rem, 1.8vw, 1.25rem); }   /* 14px -> 20px */

/* Subtitles & Eyebrow Headers (Location) */
.hero3  { font-size: clamp(1rem, 2.2vw, 1.5rem); }        /* 16px -> 24px */
.hero4  { font-size: clamp(1.125rem, 2.8vw, 1.875rem); }  /* 18px -> 30px */

/* Card Headers & Medium Titles */
.hero5  { font-size: clamp(1.25rem, 3.5vw, 2.25rem); }    /* 20px -> 36px */
.hero6  { font-size: clamp(1.5rem, 4.5vw, 3rem); }        /* 24px -> 48px */

/* Large Display Headers */
.hero7  { font-size: clamp(1.875rem, 6vw, 4rem); }        /* 30px -> 64px */
.hero8  { font-size: clamp(2.25rem, 7.5vw, 5.25rem); }    /* 36px -> 84px */

/* Mega Display Headers */
.hero9  { font-size: clamp(2.75rem, 9vw, 6.75rem); }      /* 44px -> 108px */
.hero10 { font-size: clamp(3.25rem, 12vw, 8.5rem); }      /* 52px -> 136px */

/* WEATHER BG */
#weather-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none; /* Allows clicks to pass through to content */
   
    
    /* Sizing fixes */
  background-size: cover;      /* Forces image to scale and fill without stretching distortion */
  background-position: center; /* Centers the focal point of the image */
  background-repeat: no-repeat;/* Prevents tiling if the screen is large */
}

.weather-bg-credit {
    position: absolute;
    bottom: 0;
    right:0;
}

.text-backdrop {
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.35); /* dark tint, guarantees white text works */
    color: white;
}

.text-backdrop-card {
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.35); /* dark tint, guarantees white text works */
    color: white;
    padding: 8px;
}


.info-box {
    flex: 0 0 200px;
    /* background-color: pink; */
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 8px;
    border-radius: 20px;
}


/* INPUT */

.search-input {
    width: 100%;
    font-size: clamp(0.875rem, 1.8vw, 1.25rem);
}

.search-selectables {
    margin-top: 5px;
    margin-bottom: 5px;
}

.search-selectables:hover {
    color:blue;
    cursor: pointer;
}