/* 
 * Seven Aesthetics Ethiopia - Main Stylesheet
 * Created: April 4, 2025
 */

/* ===== RESET & BASE STYLES ===== */
:root {
  --dark-grey: #333333;
  --medium-grey: #636363;
  --light-grey: #eeeeee;
  --ash: #f4f4f4;
  --primary-color: #000;
  --white: white;
  --border: 1px solid var(--light-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  background-color: var(--white);
  color: var(--dark-grey);
  letter-spacing: -0.4px;
  overflow-x: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
  min-width: 150px;
  min-height: 37px;
  padding: 0.6rem 1.1rem;
  border: solid #2a2a2a 1px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 200;
  transition: 0.5s;
  transition: background 0.3s;
  cursor: pointer;
}
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.btn:hover {
    background-color: var(--dark-grey);
}

.btn2 {
  background: var(--white);
  color: var(--primary-color);
}

.btn2:hover {
  border-width: 1px;
  background: #333;
  color: #fff;
}
/*----------------------------*/



.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover::before {
  left: 0;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.btn2 {
  background: var(--white);
  color: var(--primary-color);
  border: solid #2a2a2a 1px;
}

.btn2:hover {
  border-width: 1px;
  background: #333;
  color: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1900px;
  margin: auto;
  overflow-x: hidden;
}

.section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-content {
  display: flex;
  flex-direction: column;
  width: 90%;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

/* ===== TYPOGRAPHY ===== */
.offer-title {
  position: relative;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: var(--primary-color);
}

.offer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

#section-two-container:hover .offer-title::after {
  width: 50px;
}

.offer-description {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  color: var(--medium-grey);
  font-weight: 400;
}

/* Screen size 481px to 768px (Ipads)*/
@media (min-width: 481px) and (max-width: 768px) {}

/* Screen size above 769px (above Laptops) */
@media (min-width: 769px) {
  .section-content {
    width: 70%;
  }
}
/* Screen size 769px to 1024px (Laptops) */
@media (min-width: 769px) and (max-width: 1024px) {}
/* Screen size 1025px to 1200px (Desktops) */
@media (min-width: 1025px) and (max-width: 1200px) {}
/* Screen size > 1201px (TV)*/
@media (min-width: 1201px) {}