/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.logo span {
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #B89F7C;
    background-color: rgba(184, 159, 124, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('/assets/iamges/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #B89F7C;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.cta-button:hover {
    background: #A08B6B;
    transform: translateY(-2px);
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Styles */
.discover,
.services,
.locations {
    padding: 5rem 0;
}

.discover-content,
.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discover-text h2,
.services-header h2,
.locations h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B89F7C;
    margin-bottom: 1.5rem;
}

.discover-text p,
.services-header p,
.locations p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.discover-image img,
.services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.locations-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.location-details {
    margin: 2rem 0;
    font-size: 1.1rem;
}

.location-details strong {
    color: #B89F7C;
    font-size: 1.3rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* About Page Styles */
.about-main {
    margin-top: 100px;
    padding: 3rem 0;
}

.about-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #B89F7C;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.committee-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    position: sticky;
    top: 120px;
}

.committee-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.committee-member {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.committee-member:last-child {
    border-bottom: none;
}

.role {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.name {
    display: block;
    color: #666;
    margin-bottom: 0.5rem;
}

.phone {
    display: block;
    font-weight: 700;
    color: #B89F7C;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-section h2 {
    color: #B89F7C;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.offerings-list {
    list-style: none;
    padding-left: 0;
}

.offerings-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.offerings-list li::before {
    content: "•";
    color: #B89F7C;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.conclusion {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

/* Guesthouses Page Styles */
.guesthouses-main {
    margin-top: 100px;
    padding: 3rem 0;
}

.guesthouses-header {
    text-align: center;
    margin-bottom: 4rem;
}

.guesthouses-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.guesthouses-header p {
    font-size: 1.2rem;
    color: #666;
}

.guesthouse-section {
    margin-bottom: 4rem;
}

.guesthouse-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #B89F7C;
    margin-bottom: 3rem;
}

.guesthouse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.guesthouse-card {
    text-align: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.guesthouse-card:hover {
    transform: translateY(-5px);
}

.guesthouse-image {
    height: 300px;
    overflow: hidden;
}

.guesthouse-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guesthouse-card:hover .guesthouse-image img {
    transform: scale(1.05);
}

.guesthouse-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.google-rating-card {
    padding: 0 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.9rem;
}

.google-rating-card .google-stars {
    color: #4285f4;
    font-size: 1rem;
}

.google-rating-card .google-score {
    font-weight: bold;
    color: #4285f4;
}

.google-rating-card .google-count {
    color: #666;
    font-size: 0.8rem;
}

.info-button {
    background: #B89F7C;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.info-button:hover {
    background: #A08B6B;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-main {
    margin-top: 100px;
    padding: 3rem 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: left;
}

/* Old contact form styles - replaced with new enhanced styles below */

/* Footer Styles */
.footer {
    background: #B89F7C;
    color: #fff;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 0.8;
}

.footer-column:last-child {
    text-align: right;
    align-self: end;
}

.footer-column:last-child p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 15px;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .discover-content,
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .committee-section {
        position: static;
    }
    
    .guesthouse-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column:last-child {
        text-align: center;
    }
    
    .contact-form-container {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-grid {
        gap: 1rem;
    }
    
    .field input,
    .field textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .field label {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .contact-main {
        padding: 1rem 0;
    }
    
    .contact-title {
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .discover-text h2,
    .services-header h2,
    .locations h2,
    .about-title {
        font-size: 2rem;
    }
    
    .guesthouse-section h2 {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 0.5rem;
        margin: 0.5rem auto;
    }
    
    .contact-card {
        padding: 1rem;
        margin: 0;
        border-radius: 8px;
    }
    
    .form-grid {
        gap: 0.75rem;
    }
    
    .field input,
    .field textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    .field label {
        font-size: 0.85rem;
        left: 0.75rem;
        top: 0.75rem;
    }
    
    .field input:focus + label,
    .field input:not(:placeholder-shown) + label,
    .field textarea:focus + label,
    .field textarea:not(:placeholder-shown) + label {
        left: 10px;
        top: -6px;
        font-size: 0.75rem;
    }
    
    .btn-primary {
        padding: 0.875rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    .form-note {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
    
    .contact-main .container {
        padding: 0 0.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    max-width: 800px;
    margin: 120px auto 40px;
    padding: 40px 20px;
}

.legal-page h1 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.legal-page section {
    margin-bottom: 30px;
}

.legal-page h2 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-top: 20px;
}

.legal-page h3 {
    color: #4a7c59;
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-page li {
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: #4a7c59;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-page a:hover {
    border-bottom-color: #4a7c59;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-text p {
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.5;
}

.cookie-text a {
    color: #a8d5ba;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn.accept {
    background: #a8d5ba;
    color: #2c5530;
}

.cookie-btn.accept:hover {
    background: #90c7a3;
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-btn.customize {
    background: transparent;
    color: #a8d5ba;
    border: 1px solid #a8d5ba;
    font-size: 0.9rem;
}

.cookie-btn.customize:hover {
    background: rgba(168,213,186,0.1);
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.cookie-option h4 {
    color: #2c5530;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: #4a7c59;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
    transform: translateX(26px);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-page {
        margin: 100px auto 40px;
        padding: 20px 15px;
    }
}

/* Enhanced Legal Pages Footer Styles */
.legal-page .footer {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.legal-page .footer .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-page .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.legal-page .footer-section h3,
.legal-page .footer-section h4 {
    color: #a8d5ba;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-page .footer-section p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.legal-page .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-page .footer-section ul li {
    margin-bottom: 8px;
}

.legal-page .footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.legal-page .footer-section a:hover {
    color: #a8d5ba;
    padding-left: 5px;
}

.legal-page .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.legal-page .footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Legal Pages Footer Responsive */
@media (max-width: 768px) {
    .legal-page .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .legal-page .footer-section a:hover {
        padding-left: 0;
    }
}

/* Phone Link Styles */
.phone-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(74, 124, 89, 0.1);
    display: inline-block;
}

.phone-link:hover {
    background: #4a7c59;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(74, 124, 89, 0.3);
}

.phone-link:active {
    transform: translateY(0);
}

/* Mobile-specific phone link styling */
@media (max-width: 768px) {
    .phone-link {
        font-size: 1.1rem;
        padding: 10px 15px;
        border-radius: 8px;
        margin-top: 5px;
    }
}

/* Clean Contact Form Styles - No Conflicts */
.contact-form-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .field--full {
    grid-column: 1 / -1;
  }
}

.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #4a7c59;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.field label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #666;
  background: white;
  padding: 0 4px;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
  z-index: 1;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.85rem;
  color: #4a7c59;
  font-weight: 600;
}

.field input::placeholder,
.field textarea::placeholder {
  color: transparent;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.btn-primary {
  background: #4a7c59;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

.btn-primary:hover {
  background: #3d6349;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.form-note {
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
