*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;

    
}.container {
   max-width: 1400px;   /* safe for large screens */
  margin: 0px auto;
  padding: 0 16px; 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Top navbar */
.navbar {
  display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(98, 76, 64);
    padding: 5px 25px;
    width: 100%;
}
.logo
{
  margin-top: 5px;
 box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.2);

}
/* Logo */


/* Desktop menu */
.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding: 6px 12px;
}

.menu li a:hover {
  background: rgb(121, 158, 189);
  border-radius: 6px;
}

/* Mobile icon */
.menu-icon {
  font-size: 30px;
  cursor: pointer;
  color: white;
  display: none;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0px;
  width: 0px;
  height: 100%;
  background: rgb(123, 125, 126);
  overflow-x: hidden;
  transition: 0.4s;
  padding-top: 60px;
  z-index: 1000;
}

/* Sidebar links */
.sidebar ul {
  list-style: none;
  text-align: center;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: white;
  font-size: 22px;
  text-decoration: none;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  text-decoration: none;
}

.main_images
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
}
.main_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* ⭐ KEY for quality */
  border-radius: 15px;
}
.part1,
.part2,
.part3 {
  flex: 1;              /* equal width */
  height: 250px;        /* same height */
  overflow: hidden;  
     /* crop nicely */
 /* optional */
}

.sunshine
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    /* margin: 10px auto; */
    /* margin: 0px auto; */
}
.sunshine img
{
    border-radius: 20px;
    width: 100%;
    height: 300px;
  overflow: hidden; 
 
} */
 .sunshine1,.sunshine2,img{
     /* flex: 1;              equal width */
  /* height: 200px;        same height */
  /* overflow: hidden;     crop nicely */
 
} 

.inside_sunshine
{
    margin-top: 20px;
    margin: 20px;
}
.inside_sunshine li{
     margin: 5px;
    margin-left: 30px;
}
.inside_sunshine h1{
    margin: 15px 0px;
    color:  rgb(189, 99, 47);
    
}
footer
{
    height: 200px;
    background: #000;
    color:white;
    text-align: center;
}
.privacy_policy p{
    margin: 5px;padding: 10px;
}
.footer_inside i
{
    background-color: white;
   margin : 20px 10px;
    text-align: center;
    padding: 2px;
    border-radius: 5px;
}

/* Responsive -------------------------------------------------*/
@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .menu-icon {
    display: block;
  }
}



/* ______________________________________________________________________________ */


    
    @media (max-width: 800px) {
  .menu {
    display: none;
  }

  .menu-icon {
    display: block;
  }
  .inside_sunshine li
  
  {
    margin: 5px 0px;
  }

.main_images
{
  grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px;
}
.main_images img
{
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
}
.sunshine
{
  grid-template-columns: 1fr;
    padding: 20px;
}
.sunshine img
{
  height: 250px;
}
footer
{
    height: 190px;
    background: #000;
    color:white;
    text-align: center;
}
    

}
