/* General Styles & Resets */
    :root {
      --primary-color: #A03C3C; /* Deep Red */
      --primary-dark: #7D2F2F; /* Darker Red */
      --secondary-color: #E0C097; /* Gold/Beige */
      --text-dark: #3a2e27; /* Darker Brown */
      --text-light: #6b5b50; /* Lighter Brown */
      --background-light: #FCF9F3; /* Very Soft Off-white */
      --background-alt: #F5F0E8; /* Slightly darker off-white */
      --white:white;
      --border-color: #EAE0D1; /* Light border */
      --border-focus: #c5a981; /* Border on focus */
      --shadow-color: rgba(91, 68, 50, 0.1); /* Softer shadow */
      --shadow-hover: rgba(91, 68, 50, 0.15);
      --font-heading: 'Playfair Display', serif;
      --font-body: 'Poppins', sans-serif;
      --base-font-size: 16px;
      --line-height-body: 1.7;
      --line-height-heading: 1.3;
      --border-radius: 8px;
      --transition-speed: 0.3s;
    }

    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
      font-family: var(--font-body);
      /*background-color: var(--background-light);*/
      background: linear-gradient(90deg, #062B36 0%, #061B2C 50%, #050D18 100%);
      color: var(--text-light);
      font-size: var(--base-font-size);
      line-height: var(--line-height-body);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Utility Class for Centering */
    .container {
      width: 100%;
      max-width: 1100px; /* Slightly wider */
      margin: 0 auto;
      padding: 0 20px;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      color: var(--primary-color);
      line-height: var(--line-height-heading);
      font-weight: 600; /* Playfair Display weight */
      margin-bottom: 0.75em; /* Consistent bottom margin */
    }
    h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); } /* Responsive heading size */
    h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
    h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--text-dark); }

    p {
      margin-bottom: 1.25rem;
    }
    p:last-child {
        margin-bottom: 0;
    }

    a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color var(--transition-speed) ease-in-out;
    }
    a:hover, a:focus {
      color: var(--primary-dark);
      outline: none; /* Use focus-visible */
    }
    a:focus-visible {
        outline: 2px dashed var(--primary-color);
        outline-offset: 2px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove bottom space */
      border-radius: var(--border-radius);
    }
    .content-image {
        box-shadow: 0 5px 15px var(--shadow-color);
    }
 

     .logo-group{
display:flex;
align-items:center;
gap:10px;
}

       .reallogo{
width:50px;
height:50px;
}

    /* Header */
    .site-header {
      /*background-color: var(--white);*/
     /* background-color: #A8E6D7;*/
     background-color: rgb(28, 196, 188);
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-color);
      box-shadow: 0 2px 8px var(--shadow-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: box-shadow var(--transition-speed) ease;
    }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .logo {
        font-family: var(--font-heading);
        font-size: 1.6rem;
        font-weight: 600;
        /*color: var(--text-dark);*/
        color: rgb(9, 9, 9);
        transition: color var(--transition-speed) ease;
       
    }
    .logo:hover {
        color: var(--primary-color);
    }

    .main-nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
    }
    .main-nav li {
      margin-left: 1.5rem;
    }
    .main-nav a {
      font-weight: 400; /* Poppins regular */
      font-size: 0.95rem;
      padding: 0.5rem 0; /* Underline effect on hover */
      position: relative;
      /*color: var(--text-light);*/
      color: white;
      letter-spacing: 0.5px;
    }
    .main-nav a::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-color);
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform var(--transition-speed) ease-out;
    }
    .main-nav a:hover::after,
    .main-nav a.active::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
    .main-nav a:hover,
    .main-nav a.active {
        color: var(--text-dark);
    }

    /* Main Content Area */
    main {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
    .page-main { /* For subpages */
        padding-top: 0;
    }
    .page-title-section {
        background-color: linear-gradient(90deg, #062B36 0%, #061B2C 50%, #050D18 100%);
            /*background: linear-gradient(90deg, #062B36 0%, #061B2C 50%, #050D18 100%);*/

        padding: 3rem 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    .page-title-section h1 {
        margin-bottom: 0.5rem;
        color: #A03C3C ;
    }
    .page-title-section p {
        font-size: 1.1rem;
        color: #00E5FF;
    }

    section {
      margin-bottom: 4rem; /* Increased spacing */
    }
    .content-section {
        padding: 3rem 0;
    }
     .content-section.alt-bg {
        background-color: var(--background-alt);
           /*background: linear-gradient(90deg, #062B36 0%, #061B2C 50%, #050D18 100%);*/

        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
     }

    /* Hero Section */
    .hero-section {
        /*background-color: var(--background-alt);*/
            background: linear-gradient(90deg, #062B36 0%, #061B2C 50%, #050D18 100%);

        padding: 4rem 0;
        overflow: hidden;
    }
    .hero-content {
        display: flex;
        align-items: center;
        gap: 3rem;
    }
    .hero-text {
        flex: 1 1 55%; /* Takes more space */
    }
    .hero-text h1 {
        color: var(--text-dark); /* Darker heading for contrast */
    }
    .hero-text p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    .hero-image-container {
        flex: 1 1 45%;
    }
    .hero-image {
        box-shadow: 0 10px 30px var(--shadow-color);
        border: 5px solid var(--white);
    }

    /* Intro Section */
    .intro-section {
        padding: 3rem 0;
    }
    .intro-content {
        display: flex;
        align-items: center;
        gap: 3rem;
    }
    .intro-image {
        flex: 1 1 40%;
        max-width: 400px; /* Limit image size */
    }
    .intro-image img {
        box-shadow: 0 8px 25px var(--shadow-color);
    }
    .intro-text {
        flex: 1 1 60%;
    }
    .link-arrow {
        font-weight: 600;
        display: inline-block;
        position: relative;
        padding-right: 1.5em;
    }
    .link-arrow::after {
        content: '→';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform var(--transition-speed) ease;
    }
    .link-arrow:hover::after {
        transform: translateY(-50%) translateX(5px);
    }

    /* CTA Section */
    .cta-section {
        background-color: var(--primary-color);
        color: var(--white);
        padding: 3rem 0;
        text-align: center;
        border-radius: var(--border-radius);
    }
    .cta-section h2 {
        color: var(--white);
    }
    .cta-section p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 1.5rem;
    }

    /* About Page - Story Section */
    .story-content {
        display: flex;
        align-items: flex-start; /* Align top */
        gap: 3rem;
    }
    .story-text {
        flex: 1 1 60%;
    }
    .story-image {
        flex: 1 1 40%;
        margin-top: 1rem; /* Align visually better */
    }

    /* Table Styling (Menu Page) */
    .table-container {
        overflow-x: auto;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        box-shadow: 0 3px 10px var(--shadow-color);
        background-color: var(--white);
    }
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
    }
    th, td {
      border-bottom: 1px solid var(--border-color);
      padding: 1rem 1.25rem; /* Increased padding */
      text-align: left;
      vertical-align: middle;
    }
    th {
      background-color: var(--background-alt);
      color: var(--text-dark);
      font-weight: 600; /* Poppins bold */
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 1px;
    }
    tbody tr {
        transition: background-color var(--transition-speed) ease;
    }
    tbody tr:last-child td {
        border-bottom: none;
    }
    tbody tr:hover {
        background-color: var(--background-alt);
    }

    /* Sides List Styling */
    .sides-list {
        list-style: none;
        max-width: 600px; /* Limit width */
        margin: 0 auto; /* Center */
    }
    .sides-list li {
        padding: 0.8rem 0;
        border-bottom: 1px dashed var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
    }
     .sides-list li:last-child {
         border-bottom: none;
     }
    .sides-list span {
        font-weight: 600;
        color: var(--text-dark);
        margin-left: 1rem;
    }

    /* Form Styling (Contact Page) */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr; /* Adjust column ratio */
        gap: 3rem;
    }
    .contact-info h2, .contact-form-container h2 {
        margin-bottom: 1.5rem;
    }
    .contact-info address {
        font-style: normal;
        line-height: 1.8;
    }
    .contact-info address a {
        color: var(--text-light);
    }
     .contact-info address a:hover {
        color: var(--primary-color);
    }

    #contact-form {
        background-color: var(--white);
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 20px var(--shadow-color);
        border: 1px solid var(--border-color);
    }
    .form-group {
      margin-bottom: 1.5rem;
    }
    fieldset.form-group {
        border: none; /* Remove fieldset border */
        padding: 0;
        margin-bottom: 1.5rem;
    }
    legend {
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.8rem;
        font-size: 1rem;
        padding: 0;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 400; /* Poppins regular */
      color: var(--text-dark);
      font-size: 0.9rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1px solid var(--border-color);
      border-radius: var(--border-radius);
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--text-light);
      transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    }
     .form-group input::placeholder,
     .form-group textarea::placeholder {
         color: #bbb;
         opacity: 1;
     }
    .form-group input[type="text"]:focus,
    .form-group input[type="email"]:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--border-focus);
        box-shadow: 0 0 0 3px rgba(197, 169, 129, 0.3); /* Focus shadow */
    }

    .radio-group div, .checkbox-group div {
        margin-bottom: 0.6rem;
        display: flex; /* Align items vertically */
        align-items: center;
    }
     .radio-group label, .checkbox-group label {
        margin-bottom: 0;
        margin-left: 0.5rem;
        font-weight: 300; /* Lighter Poppins */
        font-size: 0.95rem;
        color: var(--text-light);
        cursor: pointer;
     }
     .form-group input[type="radio"],
     .form-group input[type="checkbox"] {
       width: 1.1em;
       height: 1.1em;
       margin-right: 0; /* Remove default margin */
       accent-color: var(--primary-color);
       cursor: pointer;
     }

    /* Button Styling */
    .button {
      background-color:var(--primary-color);
      color: var(--white);
      padding: 0.8rem 1.8rem; /* Adjust padding */
      border: none;
      border-radius: 50px; /* Fully rounded */
      cursor: pointer;
      font-size: 0.95rem;
      font-weight: 600; /* Poppins bold */
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
      display: inline-block;
      text-align: center;
      line-height: 1.5; /* Ensure text vertical alignment */
    }
    .button:hover {
      background-color: rgb(198, 36, 36);
      transform: translateY(-3px);
      color: var(--white);
      box-shadow: 0 6px 12px var(--shadow-hover);
    }
    .button:focus-visible {
        outline: 2px dashed var(--primary-dark);
        outline-offset: 3px;
    }
    /* Secondary Button Style */
    .button.button-secondary {
        background-color: var(--white);
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }
    .button.button-secondary:hover {
        background-color: white; /* Slight red tint */
        color: black;
        border-color: var(--primary-dark);
    }


    /* Footer */
    .site-footer {
      background-color: var(--text-dark);
      color: rgba(255, 255, 255, 0.7); /* Lighter footer text */
      text-align: center;
      padding: 2.5rem 0;
      margin-top: 4rem;
      font-size: 0.85rem;
    }
    .site-footer p {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    .site-footer a {
        color: var(--secondary-color);
    }
    .site-footer a:hover {
        color: var(--white);
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-in {
      animation: fadeIn 0.8s ease-out forwards;
      opacity: 0;
      color: rgb(163, 154, 154);
    }
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }


    /* --- Responsive Design --- */

    /* Medium Screens (Tablets) */
    @media (max-width: 992px) {
        .hero-content, .intro-content, .story-content {
            flex-direction: column;
            text-align: center;
        }
        .hero-text, .intro-text, .story-text {
            flex-basis: auto; /* Reset flex basis */
            order: 1; /* Text below image */
        }
        .hero-image-container, .intro-image, .story-image {
            flex-basis: auto;
            order: 0; /* Image above text */
            margin-bottom: 2rem;
            max-width: 500px; /* Limit image width */
            margin-left: auto;
            margin-right: auto;
        }
        .contact-grid {
            grid-template-columns: 1fr; /* Stack contact info and form */
        }
        .contact-info {
            text-align: center;
        }
        #contact-form {
            padding: 1.5rem;
        }
    }

    /* Small Screens (Mobiles) */
    @media (max-width: 768px) {
        body { font-size: calc(var(--base-font-size) * 0.95); }

        .container { padding: 0 15px; }

        .header-container {
            flex-direction: column;
        }
        .logo { margin-bottom: 0.5rem; }
        .main-nav ul { justify-content: center; }
        .main-nav li { margin: 0 0.5rem; } /* Reduce nav spacing */
        .main-nav a { font-size: 0.9rem; }

        main { padding-top: 2rem; padding-bottom: 2rem; }
        section { margin-bottom: 3rem; }
        .content-section { padding: 2rem 0; }
        .page-title-section { padding: 2rem 0; }

        .hero-section { padding: 2.5rem 0; }
        .hero-text p { font-size: 1.05rem; }

        /* Responsive Table (Stacking) */
        .table-container { border: none; box-shadow: none; background: none; }
        table { border: none; }
        thead { display: none; }
        tr {
            display: block;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 1rem;
            background-color: var(--white);
            box-shadow: 0 3px 8px var(--shadow-color);
        }
        td {
            display: block;
            text-align: right;
            font-size: 0.9rem;
            border-bottom: 1px dashed var(--border-color);
            padding: 0.75rem 0;
            position: relative;
            padding-left: 45%; /* Make space for label */
        }
        td:last-child { border-bottom: none; padding-bottom: 0; }
        td:first-child { padding-top: 0; }
        td::before {
            content: attr(data-label); /* Use data-label for content */
            position: absolute;
            left: 0;
            width: 40%;
            padding-right: 10px;
            white-space: nowrap;
            text-align: left;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .button {
            width: 100%;
            padding: 1rem 1.5rem;
        }
        #contact-form .button {
            width: auto; /* Don't make form button full width */
        }
    }

     @media (max-width: 480px) {
         body { font-size: calc(var(--base-font-size) * 0.9); }
         .main-nav li { margin: 0 0.3rem; }
         .main-nav a { font-size: 0.85rem; }
         .hero-text p { font-size: 1rem; }
         .button { font-size: 0.9rem; }
         td { padding-left: 40%; }
         td::before { width: 35%; }
     }


     .part {
    position: fixed;
    font-size: 50px;
    pointer-events: none;
    animation: fallFade 1s ease-out forwards;
}

main h3{
    color: rgb(198, 36, 36);

}

@keyframes fallFade {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(120px) rotate(360deg) scale(1.2);
    }
}




.title {
  font-size: 40px;
  font-weight: bold;

}

.slider {
  display: inline-block;
  height: 50px;          /* height of one word */
  overflow: hidden;
  vertical-align: bottom;
  
}

.slider .word {
  display: block;
  height: 50px;
  animation: slide 8s infinite;
   background: linear-gradient(90deg, #18C6E3, #3A7BFF, #7B4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes slide {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(0); }

  25%  { transform: translateY(-50px); }
  45%  { transform: translateY(-50px); }

  50%  { transform: translateY(-100px); }
  70%  { transform: translateY(-100px); }

  75%  { transform: translateY(-150px); }
  95%  { transform: translateY(-150px); }

  100% { transform: translateY(0); }
}

.brochure-container{
  text-align:right;
  padding-right: 50px;
  padding-top: 10px;
  
}

.brochure-container a{
border: 2px solid black;
display: inline-block;
border: 2px solid white;
border-color: #A03C3C;
padding: 10px;
border-radius: 30px;
background-color:#A03C3C ;
color: white;
}


.brochure-container a:hover{

color: #A03C3C;
background-color: white;
border-color: white;
}


.contact-info iframe{
    border-radius: 20px;
}


.floating-mail{
    position: fixed;
    bottom: 30px;
    left: 30px;   /* change from right to left */
    
    background: #e74c3c;
    color: white;
    
    width: 60px;
    height: 60px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    font-size: 24px;
    
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.floating-mail:hover{
    transform: scale(1.5);
}

.whatsapp-float{
position: fixed;
top: 20px;
left: 20px;
z-index: 1000;
padding-top: 320px;

}

.whatsapp-float a{
background: #25D366;
color: white;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 32px;
text-decoration: none;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float a:hover{
transform: scale(1.1);
}