@charset "utf-8";
/* CSS Document */

:root {
      --primary-color: #647c48; /* deep green from logo */
      --accent-color: #d4af37; /* elegant gold */
      --text-color: #333;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   

    body {
      margin: 0;
      font-family: 'Georgia', serif;
      background-color: #f9f4e9;
      color: #3a3a2e;
    }
	  hr{
		  margin:20px auto;
		  width:50%;
	      height:4px;
		  background: linear-gradient(to right, #c97d41 0%, #9ab178 100%);
	  }

.menu-margin{
	height: 100px;
}

.stkMargin{
	margin:100px 0 0 0;
}

    .container {
	 max-width: 1280px;
      text-align: center;
      //padding: 60px 0px;
      position: relative;
		margin: auto;
    }

    header {
      background-color: white;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }

    .mlogo img {
      height: 40px;
    }

    nav {
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 600;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s;
    }

    nav a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      background-color: var(--accent-color);
      left: 0;
      bottom: 0;
      transition: 0.3s ease;
    }

    nav a:hover {
      color: var(--accent-color);
    }

    nav a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background-color: var(--primary-color);
    }

    main {
      padding-top: 120px;
      text-align: center;
    }

      .introCon{

      }

      .introHeadline{

      }

      .introSubHeadline{

      }

    @media screen and (max-width: 768px) {
		
      .introCon{
        padding:14px!important;
      }

      .introHeadline{
        font-size: 30px!important;
      }

      .introSubHeadline{
        font-size: 28px!important;
      }
		
      nav {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: white;
        flex-direction: column;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
      }

      nav.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }

    main {
      padding-top: 100px;
      text-align: center;
    }

    footer {
      margin-top: 4rem;
      background-color: var(--primary-color);
      color: white;
      text-align: center;
      padding: 1.5rem;
      font-size: 1rem;
      position: relative;
    }

    footer .container {
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 6px;
      background-color: var(--accent-color);
      border-radius: 3px;
    }
	  
	  
    .logo {
      font-size: 48px;
      font-family: 'Brush Script MT', cursive;
      font-weight: bold;
      color: #4d5d3d;
      position: relative;
      display: inline-block;
    }
    .logo::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 25px;
      //background: linear-gradient(to right, #c97d41 0%, #9ab178 100%);
      z-index: -1;
      transform: translateY(-50%);
      border-radius: 8px;
    }
    .subtitle {
      font-size: 28px;
      margin-top: 10px;
      font-style: italic;
    }
    .main-heading {
      //margin-top: 40px;
      font-size: 36px;
      font-weight: bold;
      line-height: 1.5;
    }
    .features {
      margin-top: 10px;
      font-size: 26px;
    }
    .real-leaf-heading {
      //margin-top: 40px;
      font-size: 34px;
      font-weight: bold;
      color: #a7602f;
    }
    .real-leaf-subtext {
      font-size: 21px;
      font-style: italic;
      margin-top: 5px;
    }
    .website {
      margin-top: 20px;
      font-size: 18px;
      font-weight: bold;
    }
    .leaves {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
		z-index: -10000;
    }
    .leaf {
      position: absolute;
      width: 120px;
	  animation: float 6s ease-in-out infinite;
    }
	  
	  .leafwnm {
      position: absolute;
      width: 120px; 
    }
	  
    .leaf-top-left { top: 10px; left: 10px; width: 180px;  animation-delay: 1s;}
    .leaf-top-right { top: 10px; right: 10px; width: 200px;  animation-delay: 2s;}
    .leaf-bottom-left { bottom: 10px; left: 10px; width: 140px;  animation-delay: 3s;}
    .leaf-bottom-right { bottom: 10px; right: 10px;  animation-delay: 4s;}
    .leaf-middle-left { top: 50%; left: 0; transform: translateY(-50%);  animation-delay: 5s;}
    .leaf-middle-right { top: 50%; right: 0; transform: translateY(-50%);  animation-delay: 6s;}
	  
	  @keyframes float {
      0% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
      100% { transform: translateY(0px) rotate(0deg); }
    }
	  
	 /* Responsive Design */
        @media (max-width: 768px) {
			.leaves { 
				opacity: 0.15;
    }
	  }

	 /* Contact CSS */

.conHolder {
      display: flex;
      flex-direction: column;
      max-width: 1280px;
      margin: 2.5rem auto;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      border-radius: 0.5rem;
      overflow: hidden;
    }

    @media(min-width: 1024px) {
      .conHolder {
        flex-direction: row;
      }
    }

    .form-section, .info-section {
      padding: 2.5rem;
    }

    .form-section {
      background-color: white;
      flex: 2;
    }

    .form-section h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
    }

    .form-section form > div {
      margin-bottom: 1.5rem;
    }

    label {
      display: block;
      font-weight: 500;
      color: #4a5568;
      margin-bottom: 0.5rem;
    }

    input, textarea {
      //width: calc(100% - 2rem);
      width:100%;
      padding: 0.75rem 1rem;
      border: 1px solid #cbd5e0;
      border-radius: 0.5rem;
      outline: none;
      transition: border 0.3s;
    }

    input:focus, textarea:focus {
      border-color: #ecc94b;
    }

    button {
      background-color: #647c48;
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background-color: #d69e2e;
    }

    .info-section {
      background-color: #647c48;
      color: white;
      flex: 1;
      position: relative;
    }

    .bg-tile {
      background-image: url('./../images/bg-tile.png');
      background-size: 50%;
      opacity: 0.1;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
    }

    .info-content {
      position: relative;
      z-index: 1;
    }

    .info-section h4 {
      font-size: 0.75rem;
      text-transform: uppercase;
      opacity: 0.8;
      font-weight: 600;
    }

    .info-section p, .info-section a {
      font-size: 1rem;
      line-height: 1.75rem;
      color: white;
      text-decoration: none;
    }

    .info-section a:hover {
      text-decoration: underline;
    }

/* Responsive Design */
        @media (max-width: 768px) {
			.conHolder { 
      margin: 1.5rem;
    }
	  }


.hero {
        text-align: center;
        padding: 0px 20px;
        //background-color: #faf6f0;
        //background-image: url('https://www.shayasarts.com/beta/assets/images/bg-tile.png');
        //background-repeat: repeat;
        //background-size: auto;
        opacity: 0.95;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #4f6b40;
    }

    .hero h2 {
        font-size: 1.2rem;
        font-style: italic;
        color: #a65f35;
        margin-bottom: 30px;
    }

    .content {
        max-width: 900px;
		min-height: 420px;
        margin: 10px auto;
        padding: 0 20px;
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .content strong {
        color: #4f6b40;
    }

    /* Decorative bottom background */
    .bottom-decor {
        background: url('./../images/bottom-bg.png') center bottom no-repeat;
        background-size: contain;
        width: 100%;
        height: 160px!important;
    }

 /* Designer horizontal separator */
    .fancy-separator {
        margin: 20px auto;
        width: 200px;
    }


.gift-section {
        max-width: 1200px;
        margin: 30px auto;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        display: flex;
        gap: 40px;
        padding: 40px;
        align-items: center;
        background: linear-gradient(145deg, #fdfdfb, #f6f9f4);
    }

    .gift-text {
        flex: 1;
		text-align: left;
    }

    .gift-text h2 {
        font-size: 2rem;
        margin-bottom: 5px;
        color: #3e5e2b;
    }

    .gift-text h3 {
        font-size: 1.2rem;
        font-weight: normal;
        color: #c97b50;
        margin-bottom: 20px;
    }

    .gift-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
        color: #4b4b4b;
    }

    .gift-list {
        list-style: none;
        padding: 0;
        margin: 0 0 25px;
    }

    .gift-list li {
        margin-bottom: 12px;
        font-size: 1rem;
        color: #2f2f2f;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .gift-list li::before {
        content: "🌱";
        font-size: 1.1rem;
    }

    /* Button */
    .btn {
        display: inline-block;
        padding: 12px 28px;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        color: #fff;
        background: linear-gradient(135deg, #4f6b40, #7da65e);
        border-radius: 30px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
    }

    .btn:hover {
        background: linear-gradient(135deg, #3d522f, #688e4e);
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

    
    /* Image container */
    .gift-image {
        flex: 1;
        position: relative;
    }

    .gift-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        display: block;
    }

 /* Artistic Closing Note as overlay */
    .closing-note {
        font-family: 'Great Vibes', cursive;
        font-size: 1.2rem;
		font-style: italic;
        color: #d5ff00;
        text-align: center;
        background:#00000090;
        padding: 15px 20px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        border-radius: 0 0 12px 12px;
    }
    
 .conDesk{
     display: block;
 }
 
  .conMobi{
     display: none;
 }

    /* Responsive */
    @media(max-width: 900px) {
        
         .conDesk{
     display: none;
 }
 
  .conMobi{
     display: block;
 }
		
		.closing-note {
            border-left: none;
            padding-left: 0;
            font-weight: normal !important;
        font-size: 1rem;
        padding: 12px;
        }
		
		.gift-section { 
            margin: 20px; 
            flex-direction: column;
            text-align: center;
        }
        .gift-text .btn{
            order: -1; /* ensures text is always above */
		    text-align: center;
        }
        .gift-image {
            order: 2;
        }
		
		.gallery-item { 
			width: calc(50% - 30px);
		}
		
    }


/* Filter Buttons */
    .filter-buttons {
      text-align: center;
      margin-bottom: 30px;
    }
    .filter-buttons button {
      background: #fff;
      border: 2px solid #2f4f2f;
      color: #2f4f2f;
      padding: 10px 20px;
      margin: 0 8px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .filter-buttons button:hover,
    .filter-buttons button.active {
      background: #2f4f2f;
      color: #fff;
    }

    /* Gallery Grid */
    .gallery-container {
		width: 100%;
      //display: grid;
      //grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      //gap: 20px;
    }

    .gallery-item {
	  display: block;
      margin: 00px 0px 20px 20px;
      width: calc(25% - 30px);
      float: left;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      //position: relative;
    }

    .gallery-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
      display: block;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    /* Hide items by filter */
    .hidden {
      display: none;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.85);
      justify-content: center;
      align-items: center;
    }

    .lightbox img {
      max-width: 85%;
      max-height: 85%;
      border-radius: 10px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }

    .lightbox:target {
      display: flex;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 2rem;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

@media(max-width: 900px) { 
		
		.gallery-item { 
			width: calc(50% - 30px);
		}
		
    }
