/**
Theme Name: Astra Child Gorumara Nest
Author: Manabendra Jha
Author URI: https://citytask.com
Description: Gorumara Nest Child theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-gorumara-nest
Template: astra
*/
:root {
    --green: #81D742;
    --tri: 'Trirong', serif;
  }

.gnest-page-header {
    text-align: center;
    font-family: var(--tri);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -1.5px;
    padding: 20px 0;
}

.gnest-page-header span {
    display: inline-block; /* Ensures the spans are inline */    
    text-transform: capitalize;
}

.gnest-page-header span:first-child {
    color: #fff;
    padding-right: 15px;
}

.gnest-page-header span:last-child {
    color: var(--green);
    font-weight: bold;
}
/* Media query for smaller screens */
@media (max-width: 768px) {
    .gnest-page-header {
        font-size: 30px; /* Adjust font size for smaller screens */
        letter-spacing: -0.5px; /* Adjust letter spacing for smaller screens */
        padding: 10px 0;
        line-height: 1.2;
    }
}
/**
* Tariff Table 
*/

.tariff-responsive-table {
    overflow-x: auto; /* Enable horizontal scrolling on small screens */
}

.tariff-responsive-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.tariff-responsive-table th, 
.tariff-responsive-table td {
    border: 1px solid #ddd; /* Add border to table cells */
    padding: 4px; /* Compact padding */
    text-align: left; /* Align text to the left */
    font-size: 16px; /* Set base font size */
}

.tariff-responsive-table th {
    background-color: #3e90cc; /* Set header background color */
    color: white; /* Set header text color */
}

.tariff-responsive-table .plan-text {
    text-align: center; /* Center the plan text */
    margin: 10px 0; /* Margin around the plan text */
    font-weight: bold;
}

@media (max-width: 600px) {
    .tariff-responsive-table th, 
    .tariff-responsive-table td {
        white-space: nowrap; /* Prevent wrapping */
        font-size: 14px; /* Smaller font size for mobile */
    }

}

/**
* Amenities & Facilities
*/
.amenities-facilities {
    margin: auto;
}

.amenities-facilities h4 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--green);
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none; /* Remove bullets */
    padding: 0;
    margin: 0;
    gap: 10px; /* Compact space between items */
}

.amenities-list li {
    width: 48%; /* Two columns */
    padding: 8px 10px; /* Compact padding */
    border: 1px solid #e0e0e0; /* Light border */
    border-radius: 6px; /* Slightly rounded corners */
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    background-color: #fff; /* White background */
    position: relative;
    padding-left: 30px; /* Space for icon */
    box-sizing: border-box;
    font-size: 14px; /* Compact font size */
}

.amenities-list li::before {
    content: "\2713"; /* Checkmark icon */
    color: var(--green);
    font-weight: bold;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    .amenities-list li {
        width: 100%; /* Full width on mobile */
    }
}

/**
*   Why with Us
*/

.why-with-us {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font: inherit;
    line-height: 1.6;
    color: #333;
  }
  
  .why-with-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .why-with-us li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
  }
  
  .why-with-us li::before {
    content: "★";
    font-size: 18px;
    color: var(--green);
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .why-with-us .thanks-note {
        color: var(--green);
        font-family: var(--tri);
        font-size: 25px;
        margin-top: 20px;
        font-style: italic;
  }
  @media (max-width: 768px) {
    .why-with-us {
      padding: 15px;
      margin: 10px;
    }
  
    .why-with-us li {
      font-size: 16px;
    }
  }
  

  .butterflies {        
    padding: 45px; /* Padding around the content */
    border-radius: 10px; /* Rounded corners for the div */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.butterflies h2, 
.butterflies h4 {
    color: var(--green); /* Ensure this variable is defined in your CSS */
    margin-bottom: 15px; /* Spacing below the heading */
}

.butterflies p {    
    line-height: 1.6; /* Improve readability with line height */
    margin-bottom: 10px; /* Spacing between paragraphs */
    font-size: 20px;
}

.butterflies .quote {
    position: relative; /* Position relative for icon positioning */
    padding: 15px 20px; /* Padding around the quote */
    margin: 20px 0; /* Margin for spacing */
    font-style: italic; /* Italicize the text */
    font-family: var(--tri);
    font-size: 18px;
}

.butterflies .quote::before {
    content: "❝"; /* Add a left quote icon */
    font-size: 30px; /* Size of the quote icon */
    padding-right: 10px;
    color: var(--green); /* Color for the icon */
}


.home-rooms img {
    background: #fff;
    border:5px solid #fff; 
    padding: 15px; /* Space between the image and the border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .butterflies h2 {
        font-size: 1.5em; /* Smaller heading on mobile */
    }

    .butterflies p {
        font-size: 16px; /* Smaller paragraph text on mobile */
    }
    .butterflies .quote {
        text-align: center;
        padding: 10px; /* Padding around the quote */
        margin: 10px 0; /* Margin for spacing */    
    }
}
