/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: grey;
    line-height: 1.6;
    color: #f4f4f4;
}

/* Navigation */
nav {
    background-color: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 1.5rem;
}

.menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.menu a:hover {
    color: #3498db;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
}

/* Sections */
section {
    padding: 4rem 2rem;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

img {
  max-width: 100%;
  height: auto;
}

.rect-container {
		display: flex;
		flex: 1;
		justify-content: space-between; /* Centers horizontally */
		align-items: center; /* Centers vertically */
		width: 100%;
    }
    .rectangle1, .rectangle2 {
      width: 50%; /* Adjust width as needed */
      height: 100px;
      background-color: lightblue;
    }
    
.rectangle1 {
  width: 300px;
  height: 100px;
  background-color: lightgreen;
  border-radius: 15px; /* All corners rounded equally */
}

.rectangle2 {
  width: 300px;
  height: 100px;
  background-color: lightgreen;
  border-radius: 15px; /* All corners rounded equally */
}

.card-container {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
  /* justify-content: space-around; */
  justify-content: center;
  align-items: flex-start; /* Align cards to the top */
  padding: 20px;
  background-color: #000;
  border-radius: 20px;
  gap: 40px; /* Optional: adds space between cards */
}

.card-container1 {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
  /* justify-content: space-around; */
  justify-content: center;
  align-items: flex-start; /* Align cards to the top */
  padding: 20px;
  background-color: #95d68d;
  border-radius: 20px;
  gap: 40px; /* Optional: adds space between cards */
}
.card {
  background-color: white;
  color: black;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 300px; /* Fixed width, flexible height */
  transition: transform 0.3s ease;
}

.orange-card {
	background-color: #ed6002;
	color: black;
	width: 40%;	
	}
	
.img-card {
	background-color: #ed6002;
	color: black;
	width: 50%;	
	}

.lineal {
  background: linear-gradient(160deg, lightgreen, lightblue);
  color: black;
}

.lineal1 {
  background: linear-gradient(
    90deg,
    #e6e6e6 0%,
    #ffffff 25%,
    #bfbfbf 50%,
    #ffffff 75%,
    #e6e6e6 100%
  );
}

.card:hover {
  transform: translateY(-5px);
}



.float-container {
    border: 3px solid #fff;
    padding: 20px;
}
.float-child {
    width: 50%;
    float: left;
    padding: 20px;
    border: 2px solid blue;
}  


/* Section 1 - Home */
#home {
    background: linear-gradient(
            rgba(0, 0, 0, 0.47),
            rgba(0, 0, 0, 0.47)
        ),
        url('../images/Relic.png') center/cover no-repeat;
    border-radius: 25px;
    margin: 20px;
    text-align: center;
    position: relative;
}

#home .section-container {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(2px);
}

#home h2 {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

#home p {
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 20px auto;
}






/* Section-specific styles */
#about {
	background-color: rgba(180, 20, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(2px);
    margin: 20px;
    text-align: center;
    position: relative;
    color: white;
}

#about h2 {
    color: white;
}

#services {
	background-color: #0F52BA;
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(2px);
    margin: 20px;
    text-align: center;
    position: relative;
    color: white;
}

#services h2 {
    color: white;
}

#showcase {
	background-color: rgba(230, 214, 174, 0.85);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(2px);
    margin: 20px;
    text-align: center;
    position: relative;
    color: white;
}

#showcase1 {
	background-color: rgba(180, 20, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(2px);
    margin: 20px;
    text-align: center;
    position: relative;
    color: white;
}


  	.showcase-container {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
  /* justify-content: space-around; */
  justify-content: center;
  align-items: flex-start; /* Align cards to the top */
  padding: 20px;
  background-color: #000;
  border-radius: 20px;
  gap: 40px; /* Optional: adds space between cards */
  z-index: 1;
}



#product {
	background-color: rgba(181, 92, 42, 0.85);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(2px);
	margin: 20px;
	text-align: center;
	position: relative;
	color: white;
}

#product h2 {
    color: white;
}

#contact {
	background:linear-gradient(
    90deg,
    #e6e6e6 0%,
    #f0f0f0 25%,
    #bfbfbf 50%,
    #f0f0f0 75%,
    #e6e6e6 100%
  );
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(2px);
    margin: 20px;
    text-align: center;
    position: relative;
    color: black;
}

/*  #contact h2 { color: white; } */
#contact h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  background: linear-gradient(135deg, #c0c0c0, #f4f4f4, #a9a9a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    1px 1px 0 #999,
    2px 2px 2px rgba(0, 0, 0, 0.3),
    -1px -1px 0 #fff;

  letter-spacing: 1px;
  margin-bottom: 20px;
}


.steel-heading {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  color: #d7d7d7; /* Light steel */
  background: linear-gradient(135deg, #c0c0c0, #f4f4f4, #a9a9a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    1px 1px 0 #999,
    2px 2px 2px rgba(0, 0, 0, 0.3),
    -1px -1px 0 #fff;

  letter-spacing: 1px;
  margin-bottom: 20px;
}
.steel-heading:hover {
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
  transition: all 0.3s ease;
}

#contact button {
  background: linear-gradient(to bottom, #dcdcdc, #a9a9a9);
  border: none;
  color: #333;
  padding: 5px 20px;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 #fff, 0 2px 5px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

#contact button:hover {
  background: linear-gradient(to bottom, #f0f0f0, #b0b0b0);
}


#download {
    background-color: #c0c0c0;
    color: white;
}

#download h2 {
    color: black;
}



    .download-btn {
      display: inline-block;
      background-color: #0078D4; /* Microsoft blue */
      color: white;
      padding: 12px 24px;
      font-size: 1em;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .download-btn:hover {
      background-color: #005a9e;
    }

    .download-btn:active {
      background-color: #004578;
    }

    /* Optional: icon styling */
    .download-btn i {
      margin-right: 8px;
    }


.break {
	display: block;
	margin-top: 0,3em;
}



#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #2c2c2c;
  color: #f0f0f0;
  text-align: center;
  padding: 15px;
  font-size: 0.95em;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  z-index: 9999;
}

#cookie-banner button {
  background-color: #00bfff;
  color: #fff;
  border: none;
  padding: 8px 12px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

#cookie-banner button:hover {
  background-color: #0099cc;
}



/* === MOBILE STYLES (≤480px) === */
@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  section {
    padding: 3rem 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  #home h2 {
    font-size: 2.5rem;
  }

  #home p {
    font-size: 1rem;
  }
}


/* === SMALL DEVICES (≤600px) === */
@media (max-width: 600px) {
  .download-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1em;
  }

  .card {
    width: 100%; /* Full width on small screens */
  }
}


/* === TABLET STYLES (≤768px) === */
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #2c3e50;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s;
  }

  .menu.active {
    left: 0;
  }

  .menu li {
    margin: 1rem 0;
  }

  .hamburger {
    display: block;
  }

  h2 {
    font-size: 2rem;
  }

  #home {
    margin: 10px;
    border-radius: 15px;
  }

  #home h2 {
    font-size: 3.5rem;
  }

  #home p {
    font-size: 1.2rem;
  }
}
