/* --- CONFIGURATION SECTION --- */
/* Change these colors to modify the look of your site instantly */
:root {
    --primary-color: #3d6e83;      /* Main branding color (Blue) */
    --secondary-color: #f7f6f3;    /* Darker accent color (Dark Blue/Grey) */
    --text-color: #333333;         /* Color of the text */
    --bg-color: #ffffff;           /* Background of the whole page */
    --content-bg: #f7f6f3;         /* Background of the white text box */
    --nav-text-color: #3d6e83;     /* Color of links in the nav bar */
}

/* --- RESET (Keeps things consistent) --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* --- HEADER & LOGO --- */
.site-header {
    background-color: var(--content-bg);
    text-align: left; /* Centers the logo */
    border-bottom: 1px solid #ddd;
    display: flex;
}

.logo-container img {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.foto {
    height: 500px;
    width: 500px;
}

.top-logo {
	width: 100px;
	height: 100px;
}

/* --- NAVIGATION BAR --- */
.site-nav {
    background: var(--secondary-color); /* Uses the Gradient below if you prefer */
    /* Uncomment the line below to use a gradient instead of a solid color! */
    /* background: linear-gradient(90deg, var(--secondary-color), var(--primary-color)); */
    text-align: center;
    bottom: 0;
}

.site-nav ul {
    list-style: none;
    height: 100%;
}

.site-nav ul li {
    display: inline-block;
    font-size: 160%;
    padding-left: 15px;
    padding-left: 15px;
    height: 100%;
}

.site-nav ul li a {
    display: block;
    color: var(--nav-text-color);
    text-decoration: none;
    height: 100%;
    padding-top: 30%;
    text-align: bottom;
    font-weight: bold;
}

.site-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 1); /* Slight lightening on hover */
}

/* --- MAIN CONTENT --- */
.content-container {
    max-width: 90vw; /* Keeps text from getting too wide to read */
    margin: 30px auto; /* Centers the box horizontally */
    padding: 40px;
    background-color: var(--content-bg);
    min-height: 60vh; /* Ensures the page isn't too short */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Adds a subtle drop shadow */
}

.content-container h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.content-container p {
    margin-bottom: 20px;
}

/* Simple Button Style */
.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    opacity: 0.9;
}

/* --- FOOTER --- */
.site-footer {
    text-align: center;
    padding: 20px;
    min-height: 100vh;
    background-color: var(--secondary-color);
    color: var(--nav-text-color);
    margin-top: 20px;
}

.product-listing {
    display: flex;
}

.product-box {
    flex: 33.33%;
    text-align: center;
}

.product {
    border: 1px solid black;
    box-shadow: 0 0 15px rgba(0,0,0,0.5); /* Adds a subtle drop shadow */
    text-align: center;
    width: 80%;
    min-height: 100%;
}

.product:hover {
    opacity: 0.5;
}

.product img {
    width: 100%;
}

.product h2 {
    color: black;
}

.product-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
