/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: #008080; /* Teal color for headings */
}

h3 {
    font-size: 1.5rem;
    color: #008080; /* Teal color for headings */
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #008080; /* Teal color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #006666;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-container {
    padding: 1.5rem 0;
    text-align: center;
}

.logo-container h1 {
    font-size: 2.5rem;
    color: #008080; /* Teal color for logo */
    margin-bottom: 0.5rem;
}

.tagline {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

/* Sidebar Navigation - Mobile First Approach */
.sidebar {
    width: 300px;
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    background-color: #008080; /* Teal background for sidebar */
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    background-color: #006666;
    color: #fff;
}

.sidebar-header h2 {
    color: #fff;
    margin-bottom: 0;
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu ul {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.sidebar-menu a:hover {
    background-color: #006666;
}

.sidebar-menu .submenu {
    padding-left: 20px;
    display: none;
}

.sidebar-menu .has-submenu.active .submenu {
    display: block;
}

.sidebar-menu .has-submenu > a::after {
    content: '+';
    float: right;
}

.sidebar-menu .has-submenu.active > a::after {
    content: '-';
}

/* Hamburger Menu Button */
.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background-color: #008080;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.menu-toggle i {
    font-size: 1.5rem;
}

/* Main Content Area */
.main-content {
    transition: margin-left 0.3s ease;
    padding-top: 20px;
}

/* Page Header */
.page-header {
    background-color: #e6f7f7; /* Light teal background */
    padding: 3rem 0;
    margin-bottom: 2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: #008080;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Cards */
.card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #008080;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    margin-bottom: 30px;
}

.col-1 { width: 100%; }
.col-2 { width: 100%; }
.col-3 { width: 100%; }
.col-4 { width: 100%; }

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.btn {
    display: inline-block;
    background-color: #008080;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #006666;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 100%;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    width: 100%;
    margin-bottom: 2rem;
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    width: 100%;
}

.footer-contact h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    color: #fff;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
    color: #ccc;
}

/* Blockquote Styles */
blockquote {
    background-color: #f9f9f9;
    border-left: 4px solid #008080;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 15px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Featured Sections */
.featured-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #008080;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
}

/* Responsive Styles */
@media (min-width: 576px) {
    .col-2 { width: 50%; }
}

@media (min-width: 768px) {
    .col-3 { width: 33.33%; }
    .col-4 { width: 50%; }
    
    .footer-logo,
    .footer-links,
    .footer-contact {
        width: 33.33%;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .col-4 { width: 25%; }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    
    .hero h1 { font-size: 4rem; }
}

/* Desktop-specific styles - FIX FOR SIDEBAR ISSUE */
@media (min-width: 768px) {
    /* On desktop, sidebar is not fixed by default */
    .sidebar {
        position: absolute;
        left: -300px;
    }
    
    /* Only show sidebar when toggled */
    .sidebar.active {
        position: fixed;
        left: 0;
    }
    
    /* Main content doesn't have margin by default */
    .main-content {
        margin-left: 0;
    }
    
    /* Show menu toggle on desktop */
    .menu-toggle {
        display: flex;
    }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .main-content {
        margin-left: 0;
        padding-top: 70px; /* Space for fixed menu button */
    }
    
    .sidebar {
        left: -300px;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Add overlay when sidebar is active */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .overlay.active {
        display: block;
    }
}

/* Nature background images */
.nature-bg-1 {
    background-image: url('../images/nature/aurora_waterfall.webp');
}

.nature-bg-2 {
    background-image: url('../images/nature/sunset_beach_waves.webp');
}

.nature-bg-3 {
    background-image: url('../images/nature/pink_flower.jpeg');
}

.nature-bg-4 {
    background-image: url('../images/nature/lotus_flower.webp');
}


  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }

  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
    .video-wrapper {
    text-align: center;
    margin-top: 20px; /* Optional: space from the top */
  }

  video {
    max-width: 100%;
    height: auto;
  }


  .button-wrapper {
    text-align: center;
    margin-top: 20px;
  }

  .amazon-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    background-color: #FF9900;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .amazon-button:hover {
    background-color: #e68a00;
  }