/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    font-size: 16px;
    justify-content: center;
    align-items: center;
}



.featured-title, .featured-subtitle {
    font-size: 2rem; /* 2rem = 32px */
}



.site-content {
    position: relative;
    top: 40px;
}

.image-container {
    width: 100%; /* Set the width of the visible area */
    height: 600px;
    max-height: 700px; /* Set the height of the visible area */
    padding: 0px;
    margin: 0px;
    overflow: hidden; /* Hide the overflow to show only a part of the image */
    position: relative;
  }

  .part-image {
    display: block;
    width: 100%; /* Make sure the image covers the container */
    height: 100%; /* Maintain aspect ratio */
    object-fit: cover;
    object-position: center center; /* Adjust which part of the image is visible, e.g., top, bottom, center */
    margin: 0px;
    padding: 0px;
  }



  
.featured-info {
    position: absolute;
    bottom: 11%; /* Adjust this value to control vertical placement */
    left: 35px; /* Adjust this value to control horizontal placement */
    color: white; /* Text color for visibility on the image */
    z-index: 1; /* Ensures the text is above the image */
    font-family: "dm-sans", "Helvetica", "sans serif";
    
}

.featured-title, .featured-subtitle {
    margin: 0; /* Remove margins from paragraphs for better alignment */
    text-decoration: none;
    text-shadow: 0 0 1px #505253, 0 0 2px #76787a;
    font-family: "dm-sans", Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility !important;
    z-index: 1000;

}

.featured-title {
    padding-bottom: 1%;
    font-weight: 550;
    text-transform: uppercase;
}



.contact-footer {
    display: flex;
    justify-content: center; /* Center the content */
    align-items: center; /* Align vertically in the middle */
    height: auto; /* Set a specific height if needed */
    width: 100%; 
    position: fixed; /* Fixed at the bottom */
    margin: 0;
    bottom: 0; /* Align to the bottom */
    left: 0; /* Align to the left */
    background-color: white;
    opacity: 0.5;
    z-index: 1000; /* Ensure it stays above other content */
}



/* Small Desktops and Large Tablets */

@media (min-width: 1367px) {
    html {
        font-size: 12px; 
    }

    .featured-title, .featured-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 1366px) {
    html {
        font-size: 13px; 
    }

    .featured-title, .featured-subtitle {
        font-size: 1.5rem;
    }
}

/* Tablets (Portrait & Landscape) */
@media (max-width: 1024px) {
    html {
        font-size: 14px; 
    }

    .featured-title, .featured-subtitle
    {
        font-size: 2rem;

    }
}

/* Mobile Phones (Landscape) and small tablets */
@media (max-width: 768px) {
    html {
        font-size: 16px; 
    }

    .featured-title, .featured-subtitle
    {
        font-size: 2rem;

    }

   
    


}

/* Mobile Phones (Portrait) */
@media (max-width: 480px) {
    html {
        font-size: 18px; 
    }

    .featured-title, .featured-subtitle
    {
        font-size: 2.5rem;

    }
}