html {
  scroll-behavior: smooth;
}

body {
background-color: #ffffff;
color: #0a0a0a;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
}

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

.logo span {
color: #6c757d;
}

.menu-btn,
.talk-btn {
border: 1px solid #000;
background: transparent;
font-weight: 600;
font-size: 1rem;
}

.menu-btn {
width: 48px;
height: 48px;
border-radius: 50%;
}

.talk-btn {
border-radius: 999px;
padding: 0.5rem 1.25rem;
}

.talk-btn span {
margin-left: 0.5rem;
}

.header {
padding: 2rem 1rem;
}

.hero-text h1 {
font-size: 5rem;
font-weight: 800;
line-height: 1.2;
}

.hero-text .highlight {
/* color: #adb5bd; */
color: white;
}

.header a{
  text-decoration: none;
}

.subtext {
font-size: 1.5rem;
/* color: #444; */
color: white;
max-width: 600px;
}

/* Dropdown Menu Overlay */
.menu-overlay {
position: fixed;
inset: 0;
background-color: #0a0a0a;
color: white;
z-index: 1050;
opacity: 0;
transform: translateY(-20px);
pointer-events: none;
transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-overlay.show {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}

.nav-arrow {
width: 48px;
height: 48px;
font-size: 1.5rem;
background-color: transparent;
border: 1px solid white;
color: white;
}

hr {
opacity: 0.1;
}
.links a{
  text-decoration: none;
  color: black;
}
.links span{
  font-weight: 700;
  cursor: pointer;
}
.links span:hover{
  color: #444;
}


/* product */
.products .row .image-container {
  position: relative;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.products h2{
  font-weight: 900;
  line-height: 1.2;
}

.products .row .image-container img {
  height: 500px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.products .text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  padding: 20px;
  /* opacity: 0; */
  transition: opacity 0.3s ease, transform 0.3s ease; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.products .image-container img:hover{
  transform: scale(1.1) translateX(10px);
  cursor: pointer;
}

.products .image-container .text-overlay:hover{
  opacity: 1;
  transform: translateX(20px);
  cursor: pointer;
}

.products .product3{
  margin-left: 60px;
  margin-right: 60px;
}


/* brand selection */
.brand-section {
  background-color: #fff;
  color: #000;
}

.brand-section h2 {
  line-height: 1.2;
}

.brand-section h3 {
  color: #adb1ba; /* light gray */
}

.brand-section img {
  width: 100px;  
  height: 100px;
  object-fit: cover;  
  border-radius: 50%;
}

@media (max-width: 768px) {
  .brand-section h2 {
    font-size: 2rem;
  }
}


/* call to action */
.contact-cta {
  background-color: #0a0c13;
  height: 50vh;
  border-bottom: 1px solid grey;
}

.email-symbol {
  font-weight: 800;
  font-size: 4rem;
  color: #fff;
  padding: 0 0.3rem;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.email-display h1 {
  font-size: 5rem;
  flex-wrap: wrap;
}

.email-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #1d2230;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.email-btn:hover {
  background-color: #2c3141;
}

@media (max-width: 576px) {
  .email-display h1 {
    font-size: 2.5rem;
  }

  .email-symbol {
    font-size: 2rem;
  }

  .email-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* footer */
footer {
  background-color: #0a0c13;
  background-size: 50vh;
  padding: 3rem 1rem;
  color: #ccc;
}
footer a {
  color: #fff;
  text-decoration: underline;
  margin-right: 1.5rem;
}
footer a:hover {
  color: #aaa;
}
.footer-social i {
  font-size: 1.3rem;
  margin-left: 1.2rem;
}
.email-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  color: #fff;
  padding: 0.5rem;
  width: 100%;
}
.email-form input::placeholder {
  color: #777;
}
.email-form .submit-icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #ccc;
}
.footer-bottom {
  font-size: 0.9rem;
}


















/* Responsive styles */
@media (max-width: 768px) {
.hero-text h1 {
  font-size: 3rem;
}

.talk-btn {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

.menu-btn {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}

.menu-overlay .display-3 {
  font-size: 2rem !important;
}

.header {
  padding: 1.5rem 1rem;
}
}
