body, html {
    height: 100%;
    margin: 0;
 }

 .container {
    position: relative;
    height: 100%;
    
 }

 .background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('background.png'); /* Schimbă cu calea către imaginea ta */
    background-size: cover;
    pointer-events: none; /* Aceasta face ca imaginea să nu fie interactivă */
 }


 @media (max-width: 767px) {
    .background-image {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-image: url('background.png'); /* Schimbă cu calea către imaginea ta */
        background-size: cover;
        pointer-events: none; /* Aceasta face ca imaginea să nu fie interactivă */
    }
 }

 .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
 }

 .logo {
    width: 150px; /* Ajustează dimensiunea logoului la nevoie */
    height: auto;
    position: absolute;
    bottom: -60%; /* Distanța de la marginea de jos a paginii */
    left: 50%; /* Centrează logoul pe orizontală */
    transform: translateX(-50%); /* Centrează logoul pe orizontală */
 }

 @media (max-width: 767px) {
    .logo {
        width: 140px; /* Ajustează dimensiunea logoului la nevoie */
        height: auto;
        position: absolute;
        bottom: -50%; /* Distanța de la marginea de jos a paginii */
        left: 50%; /* Centrează logoul pe orizontală */
        transform: translateX(-50%); /* Centrează logoul pe orizontală */
    }
 }

 .welcome-title {
    font-family:  "Apple Chancery", cursive;
    font-size: 28px;
    font-weight: 300; /* Sau poți încerca cu "lighter" */
    margin-top: -5%;
    background: linear-gradient(45deg, #F9EBB2, #F7EF8A, #e2c881, #867e6b);
    -webkit-background-clip: text;
    background-clip: text; /* Define the default background-clip property */
    color: transparent;
    text-align: center top;
  
 
    line-height: 1.2;
    background-size: 200% 200%;
    animation: gradientAnimation 3s infinite alternate;
 }

 @media (max-width: 767px) {
 .welcome-title {
    font-family:  "Apple Chancery", cursive;
    font-size: 23px;
    font-weight: 300; /* Sau poți încerca cu "lighter" */
    margin-top: -40%;
    background: linear-gradient(45deg, #F9EBB2,#F7EF8A, #e2c881, #867e6b);
    -webkit-background-clip: text;
    background-clip: text; /* Define the default background-clip property */
    color: transparent;
    text-align: center top;
  margin-left: -10%;
  margin-right: -10%;
 
    line-height: 1.2;
    background-size: 200% 200%;
    animation: gradientAnimation 3s infinite alternate;
   }}


   
   @media (max-width: 767px) {
.text{
    text-align: center;
    margin-left: -10%;
    margin-right: -10%;
}}
 .text p {
  margin-top: 20%;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif, cursive;
    font-size: 24px;
    font-weight: 300; /* Sau poți încerca cu "lighter" */
    margin-bottom: 15%;
    background: linear-gradient(45deg, #808080,#808080,rgb(62, 59, 59));
    -webkit-background-clip: text;
    background-clip: text; /* Define the default background-clip property */
    color: transparent;
    text-align: center top;

 
    line-height: 1.2;
    background-size: 200% 200%;
    animation: gradientAnimation 2s infinite alternate;
  }

 @media (max-width: 767px) {
    .text p {
        margin-top: 10%;
          font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif, cursive;
          font-size: 18px;
          font-weight: 300; /* Sau poți încerca cu "lighter" */
          margin-bottom: 15%;
          background: linear-gradient(45deg, #808080,#808080,rgb(62, 59, 59));
          -webkit-background-clip: text;
          background-clip: text; /* Define the default background-clip property */
          color: transparent;
          text-align: center top;
      
       
          line-height: 1.2;
          background-size: 200% 200%;
          animation: gradientAnimation 2s infinite alternate;
      }
    } 
    
    .text p1{
    margin-top: 0%;
    font-family:  "Apple Chancery", cursive;
      font-size: 20px;
      font-weight: 300; /* Sau poți încerca cu "lighter" */
      margin-bottom: 0%;
      background: linear-gradient(45deg, #808080,#F5F5F5,rgb(62, 59, 59));
      -webkit-background-clip: text;
      background-clip: text; /* Define the default background-clip property */
      color: transparent;
      text-align: center top;
      line-height: 1.2;
      background-size: 200% 200%;
      animation: gradientAnimation 3s infinite alternate;

    }

     @media (max-width: 767px) {
    .text p1 {
    margin-top: 5%;
    font-family:  "Apple Chancery", cursive;
      font-size: 18px;
      font-weight: 300; /* Sau poți încerca cu "lighter" */
      margin-bottom: -20%;
      background: linear-gradient(45deg, #808080,#F5F5F5,rgb(62, 59, 59));
      -webkit-background-clip: text;
      background-clip: text; /* Define the default background-clip property */
      color: transparent;
      text-align: center ;
      
      background-size: 200% 200%;
      animation: gradientAnimation 3s infinite alternate;
      /* Adaugă o margine mică în dreapta */
      letter-spacing: 1px; /* Ajustează spațiul dintre caractere */
  }}

   @keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}



.contact-info a {
    color: #F9EBB2 !important;
}


.phone-number {
    font-size: 15px;
    color: #F9EBB2 !important;
    
    font-weight: bold;
}
