/* ---Home-page starts here---*/
body.page-id-1322 {
	background-color: #6CA64E;
}

.post-1322.page.type-page.status-publish.ast-article-single {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

/*==============Hero background-image starts here=========================*/
.cute-hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.423), rgba(0, 0, 0, 0.407)), url('https://jeanrene.xyz/wp-content/uploads/2025/04/male-photographer.webp');
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 45px;
}

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

.cute-text-h1 {
  font-size: 50px;
}

.cute-text-b a {
	color: black;
}

.cute-text-b {
  border: none;
  border-radius: 10px;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  margin: 10px auto;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}

.cute-text-b:hover a {
  color: white;
}

 .cute-text-b:hover {
  background-color: #555;
}

/*==============End of Hero======================*/

/*=============Text section======================*/
/* Section Element */
.cute-section1 {
  display: flex;
  flex-wrap: wrap;
}

/* Article Element */
article {
  flex: 1 1 33.33%;
  padding-left: 1em;
  padding-right: 1em;
}

.cute-sect-h3 {
  margin: 15px auto;
}

/* Media query for screen width greater than 375px and less than 768px (two columns) */
@media screen and (max-width: 768px) {
  article {
    flex: 1 1 50%;
  }
}

@media screen and (max-width: 515px) {
  article {
    flex-basis: 100%;
  }
}

/*========================End of text section=================*/

/*================index-Images=================================*/
.row {
  display: -ms-flexbox;
  /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%;
  /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

/*=====End of images=========*/
/* ---Home-page ends here---*/

/* ---Portfolio-page starts here---*/

body.page-id-3207 {
    background: no-repeat;
    background-size: cover;
  }
  
  .portfo {
    width: 100%;
    margin: 0;
    padding-top: 52px;
    display: flex;
    flex-direction: column;
  }
  
  #header {
    min-height: 70vh;
    width: 100%;
    display: flex;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    text-align: center; /* Ensure text is centered within the header */
  }
  
  .text-box {
    width: 90%;
    color: #fff;
    padding: 20px;
  }
  
  .anime {
    font-size: 2.5rem;
    animation: flash 1s 5;
    margin-bottom: 10px;
    line-height: 1.2; /* Improve line spacing for potential wrapping */
  }
  
  .nanime {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .nanime1 {
    margin: 15px 0 30px;
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
  }
  
  .hero-btn,
  .project-btn,
  .project-btn1,
  .request-session-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid #525252;
    padding: 10px 24px;
    font-size: 0.9rem;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border-radius: 20px;
    background-color: #525252;
    margin-bottom: 5px;
  }
  
  .hero-btn:hover,
  .project-btn:hover,
  .project-btn1:hover {
    border-color: #363636;
    background-color: #363636;
  }
  
  .request-session-link {
    width: fit-content;
    margin: 10px auto;
  }
  
  .request-session-link:hover {
    color: yellowgreen;
    text-decoration: underline;
  }
  
  .video-cover {
      position: fixed;
       overflow: hidden;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
      left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  
  /* page content */
  .anime2,
  .anime3 {
    color: white;
    font-weight: bold;
    text-align: center;
  }
  
  .anime2 {
    font-size: 2rem;
    margin-top: 15vh;
    margin-bottom: 30px;
  }
  
  .anime3 > a.projectmail {
    color: greenyellow;
    text-decoration: underline;
    font-size: 1rem;
  }
  
  #portfolio,
  #contact {
    /*padding: 50px 20px;*/
    text-align: center;
  }
  
  .portfolio-text,
  .contact-text {
    margin-bottom: 30px;
  }
  
  .cards {
    max-width: 1200px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
  }
  
  .card {
    background-color: #121212;
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .project-2-img {
    max-width: 100%;
    max-height: 70%;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 6px;
    transition: opacity 0.3s ease-in-out;
  }
  
  .card img:hover {
    opacity: 0.9;
  }
  
  .button-container {
    display: flex;
    /*flex-direction: column;*/
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .project-btn {
    padding: 10px 20px;
    text-align: center;
    width: 80%;
    margin-bottom: 8px;
    font-size: 0.85rem; /* Slightly smaller font for buttons */
  }
  
  .request-session-link {
    padding: 10px 20px;
    text-align: center;
    width: 80%;
    margin-bottom: 8px;
    font-size: 0.85rem; /* Slightly smaller font for buttons */
  }
  
  .project-btn1 {
    margin: 20px auto;
    padding: 12px 34px;
    text-align: center;
      width: 20%;
  }
  
  .contact-text {
    text-align: center;
    margin-top: 30px;
  }
  
  .anime2,
  .projectmail,
  .project-btn1,
  .anime3 {
    display: block;
    margin: 15px auto;
    text-align: center;
  }
  
  @keyframes flash {
    25% {
      opacity: 1;
      color: blue;
    }
    50% {
      opacity: 1;
      color: red;
    }
    100% {
      opacity: 1;
      color: green;
    }
  }
  
  /* Media Queries */
  
  /* Small devices (phones, less than 768px) */
  @media (max-width: 767px) {
    #header {
      min-height: 85vh; /* Give more vertical space */
    }
  
    .text-box {
      padding: 15px;
    }
  
    .anime {
      font-size: 2.2rem; /* Slightly smaller for better fit */
    }
  
    .nanime {
      font-size: 1.1rem;
    }
  
    .nanime1 {
      font-size: 0.95rem;
      margin: 10px 0 20px;
    }
  
    .hero-btn,
    .project-btn,
    .project-btn1,
    .request-session-link {
      padding: 8px 20px;
      font-size: 0.8rem;
        width: 45%;
    }
  
    .cards {
      grid-template-columns: 1fr; /* Single column on small screens */
      grid-gap: 15px;
    }
  
    .button-container {
      flex-direction: row; /* Stack buttons */
        justify-content: space-between;
    }
  
    .project-btn,
    .request-session-link {
      /*width: 100%;*/
      margin: 5px 0; /* Add some vertical margin between buttons */
    }
  
    .anime2 {
      font-size: 1.9rem;
      margin-top: 10vh;
    }
  
    .anime3 > a.projectmail {
      font-size: 0.9rem;
    }
  }
  
  /* Medium devices (tablets, 768px to 991px) */
  @media (min-width: 768px) and (max-width: 991px) {
    #header {
      min-height: 80vh;
    }
  
    .anime {
      font-size: 3rem;
    }
  
    .nanime {
      font-size: 1.3rem;
    }
  
    .nanime1 {
      font-size: 1rem;
    }
  
    .cards {
      grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
      grid-gap: 20px;
    }
  
    .button-container {
      flex-direction: row; /* Buttons in a row */
      justify-content: center; /* Center buttons */
    }
  
    .project-btn,
    .request-session-link {
      width: auto;
      margin: 0 5px;
    }
  
    .anime2 {
      font-size: 2.1rem;
      margin-top: 15vh;
    }
  
    .anime3 > a.projectmail {
      font-size: 0.95rem;
    }
  }
  
  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    #header {
      min-height: 75vh;
    }
  
    .anime {
      font-size: 3.5rem;
    }
  
    .nanime {
      font-size: 1.5rem;
    }
  
    .nanime1 {
      font-size: 1.1rem;
    }
  
    .cards {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust minmax as needed */
      grid-gap: 20px;
    }
  
    .button-container {
      flex-direction: row;
      justify-content: center;
    }
  
    .project-btn,
    .request-session-link {
      margin: 0 10px;
    }
  
    .anime2 {
      font-size: 2.3rem;
      margin-top: 20vh;
    }
  
    .anime3 > a.projectmail {
      font-size: 1rem;
    }
  }
  
  /* Very small screens (even narrower phones) */
  @media (max-width: 375px) {
    .anime {
      font-size: 2rem;
    }
  
    .nanime {
      font-size: 1rem;
    }
  
    .nanime1 {
      font-size: 0.9rem;
    }
  
    .hero-btn,
    .project-btn,
    .project-btn1,
    .request-session-link {
      font-size: 0.75rem;
      padding: 6px 15px;
    }
  }
  /* ---Portfolio-page ends here---*/

  /* ---About-page starts here---*/
/*.wp-block-uagb-container*/ 
body.page-id-1324 {
    Background-color: #474e5d !important;
 }

.wp-block-columns,
.wp-block-column {
 width: 100%;
 max-width: 100%;
 display: block; /* Ensures it doesn’t get restricted */
}

.wp-block-uagb-container {
 width: 100% !important;
 max-width: 100% !important;
}
/* .wp-block-uagb-advanced-heading */
.uagb-block-a029f20b, 
.uagb-block-144f4613, 
.uagb-block-3efd8654 {
 text-align: center;
}

.wp-block-column-is-layout-flow {
 background-color: #595917;
}
.has-text-align-left {
 margin: 15px 10px 0 20px;
}

.wp-block-list li {
 margin: 0 10px 0 25px;
}

.about-hero-image {
 background-image: linear-gradient(rgba(0, 0, 0, 0.423), rgba(0, 0, 0, 0.407)), url('https://jeanrene.xyz/wp-content/uploads/2021/11/header-hero-1.jpg');
 width: 100%;
 height: 60vh;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 position: relative;
 /*margin-top: 45px;*/
}

.about-hero-text {
 text-align: center;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 color: #000000;
}

.about-hero-text h1 {
 font-size: 50px;
}

/*================Text section=================================*/
/* Section Element */
.section1 {
display: flex;
flex-wrap: wrap;
background-color: #474e5d;
color: #ffffff;
}

.section1 h3 {
margin: 15px auto;
text-align: center;
font-size: 25px;
}

.piva {
font-size: 1.1em;
line-height: 1.6;
margin-bottom: 0;
}

ol.vatext {
margin-top: 10px;
margin-bottom: 0;
margin-left: 25px;
}

ol.vatext li.priva {
margin-bottom: 0;
list-style-type: decimal;
}

ol.vatext li.priva:last-child {
margin-bottom: 7px;
}

/* Media query for screen width greater than 375px and less than 768px (two columns) */
@media screen and (max-width: 768px) {
article {
 flex: 1 1 50%;
}
}

@media screen and (max-width: 515px) {
article {
 flex-basis: 100%;
}
}


/* ------ Column-images ------- */
.column-about {
float: left;
width: 33.3%;
margin-bottom: 16px;
padding: 0 8px;
}

h2.about-h2 {
text-align: center;
 font-weight: 600;
 width: 100%;
 display: block;
 padding: 15px 0;
 margin-top: 15px;
   color: #ffffff;
 background-color: #474e5d;
}

.card img {
 width: 100%;
}

.card {
 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
 margin: 8px;
}

.about-section {
 padding: 50px;
 margin-top: 50px;
 text-align: center;
 color: white;
}

.container-about {
 padding: 0 16px;
 color: #FAFAFA;
}

/* --- --- */
.container-about::after,
.row-about::after {
 content: "";
 clear: both;
 display: table;
}

.title {
 color: #FFFFA3;
}

.button {
 border: none;
 outline: 0;
 display: inline-block;
 padding: 8px;
 color: white;
 background-color: #000;
 text-align: center;
 cursor: pointer;
 width: 100%;
}

.button:hover {
 background-color: #555;
}

.text1 {
 font-size: 18px;
}

@media screen and (max-width: 650px) {
.column-about {
 width: 100%;
 display: block;
}
}

/* ---About-page ends here---*/

/* ---Gallery-page starts here---*/
/*=====Start Gallery(part-1)=====*/

body.page-id-3341 {
    background-color: #222; /* Dark background */
    color: #fff;
	width: 100%;
}
.galy-text {
	margin-top: 6%;
}

.galy-text-h1 {
    font-size: 2.5rem;
   	padding-top: 25px;
	text-align: center;
}

.galy-text-h2 {
	text-align: center;
}

.galy-text-p1 {
    max-width: 1000px;
    margin: auto;
    font-size: 1.2rem;
	padding-bottom: 20px;
   
}

.galy-container {
            max-width: 700px;
            position: relative;
            margin: auto;
            margin-top: 20px; /* Added margin for better spacing */
        }

        .mySlides {
            display: none;
        }

        .mySlides img {
            width: 100%;
            height: auto;
            border-radius: 8px; /* Added border-radius for images */
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -50px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.5); /* Added background for better visibility */
        }

        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        .galy-numbertext {
            color: #fff;
            font-size: 12px;
            padding: 8px 12px;
            position: absolute;
            top: 0;
            border-radius: 3px; /* Added border-radius */
            background-color: rgba(0,0,0,0.5);
        }

        .galy-caption-container {
            text-align: center;
            padding: 8px 16px;
            background-color: #222; /* Changed to a darker color */
            color: #fff;
            border-radius: 8px; /* Added border-radius */
            margin-top: 10px; /* Added margin-top */
        }

        .galy-row {
            display: flex;
            justify-content: center; /* Center the columns */
            margin-top: 10px;
        }

        .galy-column {
            flex: 16.66%;
            padding: 5px;
            box-sizing: border-box; /* Ensure padding doesn't affect width */
            display: flex; /* Use flexbox for centering */
            justify-content: center; /* Center content horizontally */
        }

        .galy-column img {
            height: auto;
            max-width: 100%; /* Ensure images don't overflow */
            border-radius: 5px;
        }

        .demo {
            opacity: 0.6;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .active, .demo:hover {
            opacity: 1;
        }

        @media screen and (max-width: 600px) {
            .galy-column {
                flex: 50%;
            }
        }

        @media screen and (max-width: 400px) {
            .prev, .next {
                font-size: 16px; /* Adjust font size for smaller screens */
                padding: 10px;
            }
            .galy-numbertext{
               font-size: 10px;
            }
        }
/* ---Gallery-page ends here---*/

/* ---Services-page starts here---*/
.page-id-1326 {
    background-color: #AACFD4;
  }
  
  /*=========================Start Services========================*/
  .services-section {
    margin: 0;
    padding: 0;
    background-image: url('https://jeanrene.xyz/wp-content/uploads/2025/04/brick-frame33.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(90, 90, 90);
    background-blend-mode: multiply;
    background-position: center;
    color: #fff;
  }
  
  .services-h3 {
    text-align: center;
    text-transform: uppercase;
  }
  
  #services-i,
  #services-i2,
  #services-i3,
  #services-i4,
  #services-i5,
  #services-i6 {
    font-size: 3rem;
    color: lightgreen;
    padding: 1rem;
    transition: all 0.3s linear;
    transform: rotate(-45deg);
  }
  
  .services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .service-card {
    cursor: pointer;
    width: 300px;
    margin: 20px;
    padding: 2rem 20px 20px 20px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .icon-container {
    border: 2px solid lightgreen;
    transition: 0.3s linear;
    width: max-content;
    margin: 0 auto;
    transform: rotate(45deg);
  }
  
  .service-card:hover {
    box-shadow: 0 0 30px 0 lightgreen;
    transform: scale(1.1);
  }
  
  .service-card a {
    color: lightgreen;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .service-card {
      width: 100%;
    }
  }
  
 /* ---Services-page ends here---*/

 /* ---Blog-page starts here---*/
body.page-id-3339 {
  background-color: #DFF0D8;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
}

/*=====Start Blog=====*/
/* Header/Blog Title */
.toper {
  margin-top: 45px;
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: #495A5A;
  color: #fafafa;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.colleft {
  float: left;
  width: 75%;
}

/* Right column */
.colright {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.theimg,
.theimg1,
.theimg2 {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

.theimg1 img {
  height: 20vh;
  width: auto;
}

.theimg2 img,
.theimg img {
  height: 15vh;
  width: 45%;
}

/* Add a smallest effect for articles */
.smallest {
  background-color: #495A5A;
  padding: 20px;
  margin-top: 20px;
  color: #fafafa;
}

.smallest p {
  margin-top: 5px;
}

.smallest p>a {
  color: #FFFFE0;
}

/* Clear floats after the columns */
.wor:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 800px wide, 
make the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  #main-blogcontent {
      padding-top: 43px;
  }

  .colleft,
  .colright {
      width: 100%;
      padding: 0;
  }
}


@media (min-width: 601px) and (max-width: 1024px) {
  #main-blogcontent {
      padding-top: 45px;
  }

  body.page-id-3339 {
      margin: 0;
      padding: 0;
      height: 100vh;
      width: 100vw;
  }

  .colleft,
  .colright {
      width: 100%;
      padding: 0;
  }
}

/* ---Blog-page ends here---*/