/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    color: white;
}


body {
    margin: 0;
    background-color: rgb(0, 0, 0);
     overflow-x: hidden;
  max-width: 100vw;
  
}

/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background-color: black;
    z-index: 1000;

    display: flex;
    align-items: center;
}

.logo {
    position: absolute;
    left: 20px;
}

.logo img {
    height: 85px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    
}

nav li a {
    color: white;
    text-decoration: none;
    padding: 30px 16px;
    font-size: 20px;
}

nav li a:hover {
    background-color: rgb(75, 75, 75);
}


/* ================= backgrounds ================= */

.hero {
    min-height: 100vh;                
    background-image: url(mme.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* ================= SECOND BACKGROUND ================= */

.second-bg {
    min-height: 80vh;
    background-image: url("second-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= SERVICES BACKGROUND ================= */

.services-bg {
    min-height: 80vh;
    background-image: url("services-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= CONTACT BACKGROUND ================= */

.city-bg {
    min-height: 80vh;
    background-image: url("city.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* ================= ABOUT BACKGROUND ================= */

.aboutus-bg {
    min-height: 80vh;
    background-image: url("aboutus.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* ================= HOME CONTENT ================= */

.page {
    width: 100%;
    text-align: center;

   margin-top: 46vh;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.page-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: white;
}

/* ================= BUTTON ================= */

#callBtn {
  display: block;

  /* Center horizontally */
 margin-top: 2rem;

  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  cursor: pointer;
}

/* ================= PRIORITY SECTION ================= */

.priority {
  min-height: 40vh;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  color: #fff;
}

.priority-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px; 
}

.priority-statement {
  font-size: 29px;
  text-align: center; 
  max-width: 800px;   
    letter-spacing: 0.1em;
}


/* ================= CONTACT CONTENT ================= */

.contact {
    width: 100%;
    text-align: center;
    margin-top: 3em;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
}

/* Name Section */
.name {
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ================= MAP ================= */

.iframe-container {
    width: min(1200px, 90vw);
    height: clamp(50vh, 60vh, 65vh);
    overflow: hidden;
    margin: -2rem auto 3rem auto;
    position: relative;          
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================= info SECTION ================= */



/* Contact Info Column */
.contact-info {
    
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 8em 0 0 20vw; 
}

/* Individual Block */
.info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.6;
    
}

.info-block h3 {
    margin: 0 0 0.5rem 0;
    font-size:1.8em;
}

.info-block p {
    margin: 0.2rem 0;
    font-size:1.4em;
}




/* ================= CONTACT FORM ================= */

form {
    width: min(900px, 85vw);
    margin: -37rem 0 0 auto;   
    padding: 70px;
    box-sizing: border-box;
    transform: translateX(-12vw); 
}



   

/* Labels */

label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

/* Row Layout */

.row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    
}

.row > div {
    flex: 1;
}

/* Inputs */

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding:20px;
    font-size: 18px;
    border: 1px solid #000000;
    outline: none;
     color: #000000 !important;       
    background-color: #ffffff !important;

}

/* Textarea */

textarea {
    min-height: 220px;
}

/* Submit Button */

input[type="submit"] {
    display: block;
    width: 250px;
    padding: 18px;
    font-size: 18px;
    background-color: #8b8b8b;
    color: white;
    border: none;
    margin: 30px auto 0 auto;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #000000;
}

/* Contact Text */

.contactt-title {
    font-size: 57px;
    margin-top: 2rem;
    margin-left: 5rem;
    color: white;
}





/* ================= ABOUT PAGE ================= */


.about {
    width: 100%;
    text-align: center;
    margin-top: 3em;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
}

.story {
    width: 100%;
    text-align: center;
    
    margin-top: 8vh;
  
   
}

.story-title {
    font-size: clamp(2rem, 4vw, 3em);  
    color: white;
    margin-bottom: 1rem;
     letter-spacing: 0.1em;
        text-decoration: underline;
   text-decoration-thickness: 0.5px;
    text-underline-offset: 15px;
}

.story-text {
    color: white;
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
}


/* ================= SERVICES SECTION ================= */
.services {
    width: 100%;
    text-align: center;
    margin-top: 3em;
}

.services-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
}


 

.pricing-header {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto 3rem auto;
}

.pricing-header h2 {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
    text-align: center;
}

/* The line */
.pricing-header h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255,255,255,0.3);
  margin-top: 1rem;
}



.dry-clean-list {
  list-style: none;
  padding: 0;
  padding-left: 29%;
}

.dry-clean-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
   font-size: 1.6rem;
}

.dry-clean-list h2 {
      margin-bottom: 15px;
font-size: 1.8rem;
  text-decoration: underline;
  text-underline-offset: 10px;
   text-decoration-thickness: 0.5px;
    padding-left: 30px; 
}
.dry-clean-list h3 {
    margin-top: 40px;   
    margin-bottom: 20px; 
    font-size: 1.5rem;
     text-decoration: underline;
   text-decoration-thickness: 0.5px;
    text-underline-offset: 8px;
}


.tailoring-list {
  list-style: none;
  padding: 0;
  padding-left: 57%;
  margin-top: -53rem;   
}

.tailoring-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
   font-size: 1.6rem;
}

.tailoring-list h2 {
      margin-bottom: 15px;
font-size: 1.8rem;
  text-decoration: underline;
  text-underline-offset: 10px;
   text-decoration-thickness: 0.5px;
    padding-left: 30px; 
}

.tailoring-list h3 {
    margin-top: 40px;    
    margin-bottom: 20px;  
    font-size: 1.5rem;
     text-decoration: underline;
   text-decoration-thickness: 0.5px;
    text-underline-offset: 8px;
}


.factors-list {
  list-style: none;
  padding: 0;
  padding-left: 29%;
  margin-top: -1rem;   
}

.factors-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
   font-size: 1.6rem;
}

.factors-list h2 {
      margin-bottom: 15px;
font-size: 1.8rem;
  text-decoration: underline;
  text-underline-offset: 10px;
   text-decoration-thickness: 0.5px;
    padding-left: 30px; 
}

.factors-list h3 {
    margin-top: 40px;     
    margin-bottom: 20px;  
    font-size: 1.5rem;
     text-decoration: underline;
   text-decoration-thickness: 0.5px;
    text-underline-offset: 8px;
}


/* Container styling */
.refund {
  max-width: 800px;  
  margin: 2rem auto;  
  padding: 1.5rem;
  border-radius: 8px;
}

/* Heading styling */
.refund h2 {
  font-size: 2.2rem;        
  font-weight: 700;           
  text-align: center;       
  margin-bottom: 1rem;      
  letter-spacing: 1px;   
     text-decoration: underline;
   text-decoration-thickness: 0.5px;
    text-underline-offset: 8px;

}

/* Paragraph styling */
.refund p {
  font-size: 1.1rem;         
  line-height: 1.6;         
  color: #ffffff;                
  text-align: center;          
  margin-bottom: 1rem;       
}


/* ================= FOOTER SECTION ================= */



footer {
    background: #171717;
 padding: 40px 0 0px 0;
    color: #fff;
    
}

footer .container{
    max-width: 1140px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-content{
    flex: 1 1 300px; 
    text-align: center;
    margin: 10px 0;
}

footer h3{
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-content p,
.footer-content ul{
    margin: 25px 0;
}

.list{
    padding: 0;
    list-style: none;
}

.list li{
    padding: 7px 0;
    position: relative;
}

.list li::before{
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.5s;
}

.list li:hover::before{
    width: 70px;
}

a{
    color: #fff;
    text-decoration: none;
}

a:hover{
    color: #ffffff;
}

.bottom-bar {
    width: 100%;           
    background: #000;     
    text-align: center;
    padding: 15px 0;
    margin: 0;
}

.bottom-bar p {
    margin: 0;       
    padding: 7px 0;  
    color: #fff;
    font-size: 16px;
}




/* ================= MEDIA QUERIES ================= */

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .page {
        min-height: 50vh;
    }

    input[type=submit] { transform: translateX(30%); }

   
.priority-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.priority-statement {
  font-size: 32px;
  max-width: 350px;   
  line-height: 1.2;   
  text-align: center;
}


    #callBtn {
  margin-top: -55vh;
}



.contact-info {
    margin: 8em 0 0 10vw; 
}

form {
    width: min(700px, 85vw);
    margin: -37rem 0 0 auto;   
    padding: 70px;
    box-sizing: border-box;
    transform: translateX(-2vw); 
}

.iframe-container {

    margin: -6rem auto 3rem auto; 
    position: relative;           
}

.contactt-title {
    font-size: 45px;
   margin-left: 3rem;
}

.story {
    width: 80%;
    margin: 8vh auto 0 auto;
    text-align: center;
}

.dry-clean-list {

  padding-left: 13%; 
}

.factors-list {
   margin-top: -5rem;  
  padding-left: 15%;
  

}
}






/* PHONE */
@media (max-width: 600px) {

html, body {
    overflow-x: hidden;
  }

    nav li a {
        padding: 16px 10px;
        font-size: 14px;
    }

    nav ul {
        justify-content: flex-end;
        padding-right: 20px;
    }

    .logo img {
        height: 55px;
    }

    .logo {
        left: 10px;
    }

    .navbar {
        height: 70px;
    }

    .hero {
        padding-top: 70px;
    }

   #callBtn {
 margin-top: 2rem;
}


.story {
    width: 80%;
    margin: 8vh auto 0 auto;
    text-align: center;
}

 .contact-info {
        flex-direction: row;  
        margin-left: 0;       
        gap: 1.5rem;   
         margin: 1em 0 0 7vw;
    }

.info-block h3 {
    font-size:1.0em;
}

.info-block p {
    font-size:0.8em;
}





form {
    width: min(700px, 118vw);
    margin: -3rem 0 0 auto;    
    padding: 70px;
    box-sizing: border-box;
    transform: translateX(-9vw); 
}

.iframe-container {

    margin: -6rem auto 3rem auto; 
    position: relative;           
}

.contactt-title {
    font-size: 26px;
   margin-left: 3rem;
}




.dry-clean-list {
 
  padding-left: 22%; 
}



.tailoring-list {
 
  padding-left: 22%;
  margin-top:  5rem;    
}

.factors-list {
  
  padding-left: 21%;
  margin-top: 3rem;   
}

}
