/* Log Cabin Rentals - Main Stylesheet */
:root {
  /* Primary Color Palette - 5 Colors + Shades */
  --primary-brown: #744a1a;
  --primary-forest: #2f9839;
  --primary-amber: #cf7809;
  --primary-cream: #fffff6;
  --primary-charcoal: #42515b;
  
  /* Light Shades */
  --light-brown: #bf802a;
  --light-forest: #1dc420;
  --light-amber: #ecd49f;
  --light-cream: #FEFEF5;
  --light-charcoal: #858e9b;
  
  /* Dark Shades */
  --dark-brown: #60461f;
  --dark-forest: #0a7113;
  --dark-amber: #b35f28;
  --dark-cream: #f2ecca;
  --dark-charcoal: #396464;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-brand: 1.25rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-charcoal);
  background-color: var(--light-cream);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1 { font-size: var(--font-size-h1); font-weight: 600; color: var(--primary-brown); }
h2 { font-size: var(--font-size-h2); font-weight: 600; color: var(--primary-charcoal); }
h3 { font-size: var(--font-size-h3); font-weight: 500; color: var(--primary-charcoal); }
h4, h5, h6 { font-weight: 500; color: var(--primary-charcoal); }
p { font-size: var(--font-size-base); margin-bottom: 1.15rem; }

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
  box-shadow: 0 3px 112px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-size: var(--font-size-brand) !important;
  font-weight: 700;
  color: var(--primary-cream) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--light-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-amber) !important;
}

.navbar-toggler {
  border-color: var(--primary-cream);
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(rgba(158, 94, 22, 0.40), rgba(73, 87, 93, 0.40)), 
              url('../ROZ_images/hero-cabin.webp') center/cover;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero-content {
  padding-top: 100px !important;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  background: var(--primary-amber);
  opacity: 0.1;
  border-radius: 50% 30% 70% 40%;
  width: 300px;
  height: 300px;
  top: 20%;
  right: 10%;
  z-index: 1;
}

/* Services */
.services-section {
  padding: 5rem 0;
  background: var(--light-cream);
}

.service-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 2.24rem;
  box-shadow: 0 7px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-forest);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 30px rgba(0,0,0,0.15);
}

.service-price {
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--primary-brown);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: white;
}

.feature-box {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  background: var(--light-cream);
  margin-bottom: 2.24rem;
  transition: background 0.3s ease;
}

.feature-box:hover {
  background: var(--primary-cream);
}

.feature-icon {
  font-size: 2.58rem;
  color: var(--primary-forest);
  margin-bottom: 1.15rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: var(--light-cream);
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-amber);
}

/* Reviews/Testimonials */
.reviews-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-forest), var(--dark-forest));
  color: white;
}

.review-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin: 1rem;
}

/* Contact Form */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-form {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--primary-cream);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-brown);
  box-shadow: 0 0 0 0.2rem rgba(162, 88, 23, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background: var(--light-cream);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin-bottom: 2.24rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-item {
  background: var(--light-cream);
  border-radius: 10px;
  margin-bottom: 1.15rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-brown);
  color: white;
  padding: 1rem 1.5rem;
  cursor: pointer;
  margin: 0;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-brown);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

/* Gallery */
.gallery-section {
  padding: 3rem 0;
  background: var(--dark-charcoal);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.15rem;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-charcoal), var(--primary-charcoal));
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-amber);
  margin-bottom: 1.15rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-amber);
}

/* Price Plans */
.priceplan-section {
  padding: 5rem 0;
  background: var(--primary-cream);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-amber), var(--primary-forest));
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-value {
  font-size: 2.58rem;
  font-weight: 700;
  color: var(--primary-brown);
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 1rem 0;
  background: var(--light-cream);
}

.breadcrumb-image {
  width: 30px;
  height: 20px;
  object-fit: cover;
}

/* Section Utilities */
.section-spacing {
  padding: 5rem 0;
}

.text-primary-brown { color: var(--primary-brown); }
.text-primary-forest { color: var(--primary-forest); }
.bg-primary-brown { background-color: var(--primary-brown); }
.bg-primary-forest { background-color: var(--primary-forest); }



/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
