/* Custom Fonts */
@font-face {
  font-family: 'Patinio Basica';
  src: url('../fonts/PatinioBasica-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Font Classes */
.font-patinio {
  font-family: 'Patinio Basica', 'Comfortaa', serif;
}

.font-anton {
  font-family: 'Anton', sans-serif;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* Semi-bold */
}

.text-outline-red {
  -webkit-text-stroke: 2px #FF4F00;
}

.text-outline-blue {
  -webkit-text-stroke: 2px #2554C7;
}

.text-outline-black {
  -webkit-text-stroke: 2px #140B04;
}

.text-outline-light-blue {
  -webkit-text-stroke: 2px #D0DCFF;
}

/* Flex Layout for Page Structure */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.header {
  flex-shrink: 0; /* Header won't shrink */
}

.main {
  flex: 1; /* Main content takes remaining space */
  display: flex;
  flex-direction: column;
}

.footer {
  flex-shrink: 0; /* Footer won't shrink */
  margin-top: auto; /* Push footer to bottom */
}

/* Alternative body setup if you want to apply to body directly */
.body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}


.partner-block {
    background-color: #FAEBD7;
    border-radius: 12px;
    margin : auto;
    width : 36rem;
    height : 12rem;

}

.partner-image {
    border-radius: 0.5rem; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    background-color: white;
    object-fit: contain;
}

.representation-block {
    background-color: #FAEBD7;
    margin : auto;
    width : 20rem;
    height : 20rem;

}

.button{
    background-color: #2554C7;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    cursor: pointer;
}

.site_preview_image {
    object-fit: cover;
  }

.site_preview_container {
    width: 18rem;
    height: 12rem;
    overflow: hidden;
    border-radius: 0.5rem;
    border-color: #FF4F00;
    border-width: 0.1rem;
}