/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CURRENT THEME: National Geographic Yellow - Bright & Bold */
    --primary-color: #FFCC02;
    --secondary-color: #DAA520;
    --accent-color: #FF6B35;
    --camouflage-1: #8B7355;
    --camouflage-2: #A6895B;
    --text-primary: #1C1C1C;
    --text-secondary: #4A4A4A;
    --text-muted: #6B7280;
    --bg-light: #FFFFFF;
    --bg-cream: #FFFEF7;
    --border-color: #E5E5E5;
    
    /* ALTERNATIVE THEME OPTIONS - Change the active theme above:
    
    OPTION 1: Safari Sunset - Warm earthy tones
    --primary-color: #6B4423;
    --secondary-color: #8B6F47;
    --accent-color: #D4945F;
    --camouflage-1: #A6895B;
    --camouflage-2: #B8866B;
    --text-primary: #2D2D2D;
    --text-secondary: #5A5A5A;
    --text-muted: #8B7355;
    --bg-light: #FFFFFF;
    --bg-cream: #FFF8E7;
    --border-color: #E8DDD0;
    
    OPTION 2: Sophisticated Charcoal - Elegant dark theme
    --primary-color: #2C2C2C;
    --secondary-color: #4A4A4A;
    --accent-color: #C85A53;
    --camouflage-1: #6B4423;
    --camouflage-2: #8B6F47;
    --text-primary: #2C2C2C;
    --text-secondary: #5A5A5A;
    --text-muted: #8B8B8B;
    --bg-light: #FFFFFF;
    --bg-cream: #FAF9F6;
    --border-color: #E5E5E5;
    
    OPTION 3: Cool Slate - Modern teal accent (ACTIVE)
    
    OPTION 4: Elegant Forest - Soft green tones
    --primary-color: #2F4F2F;
    --secondary-color: #5F7E5F;
    --accent-color: #9BCAA2;
    --camouflage-1: #6B4423;
    --camouflage-2: #8B6F47;
    --text-primary: #2D2D2D;
    --text-secondary: #4A5568;
    --text-muted: #6B7280;
    --bg-light: #FFFFFF;
    --bg-cream: #F4F7F2;
    --border-color: #D1D9D1;
    */
}

body {
    font-family: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(45, 80, 22, 0.05);
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1C1C1C;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.menu-toggle {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #FFCC02 0%, #DAA520 40%, #FFD700 80%, #F4E8A8 100%);
}

.hero.with-image {
     background: 
        linear-gradient(rgba(255, 204, 2, 0.3), rgba(218, 165, 32, 0.3)),
        url('images/banner.jpg'); 
   /* background: linear-gradient(rgba(139, 69, 19, 0.4), rgb(0 0 0 / 40%)), url(images/banner2.jpg);*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0,0,0,0.01) 10px,
            rgba(0,0,0,0.01) 20px
        );
}

.hero.with-image::before {
    background: none;
}

.hero.with-image::after {
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top, transparent 0%, rgba(0,0,0,0.25) 100%),
        linear-gradient(135deg, rgba(0,0,0,0.05) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1C1C1C;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--primary-color);
    color: #1C1C1C;
    padding: 1rem 3rem;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(255, 204, 2, 0.3);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 204, 2, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.hero-image {
    display: none;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
}

.placeholder-image,
.placeholder-frame,
.placeholder-tour {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1C1C1C;
    letter-spacing: -0.5px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Gallery Section */
.gallery-section {
    background-color: #fafafa;
    padding: 3rem 5%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

.image-wrapper img,
.image-wrapper .placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.gallery-item:hover img,
.gallery-item:hover .placeholder-image {
    transform: scale(1.05);
}

.gallery-item:hover .image-wrapper {
    box-shadow: 0 6px 25px rgba(45, 80, 22, 0.2);
}

.image-info {
    padding: 0.3rem 0;
}

.image-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #1C1C1C;
    font-weight: 700;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.image-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Frames Section */
.frames-container {
    position: relative;
    overflow: hidden;
}

.frames-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.frames-grid::-webkit-scrollbar {
    display: none;
}

.frames-grid .frame-card {
    min-width: 300px;
    width: 300px;
    flex-shrink: 0;
}

.frame-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #E5E5E5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: auto;
}

.frame-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #D5D5D5;
}

.frame-image {
    width: 100%;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.frame-image img,
.placeholder-frame {
    width: 100%;
    height: 380px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.frame-details {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.frame-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #1C1C1C;
    font-weight: 700;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.3;
}

.price {
    font-size: 1.6rem;
    color: #1C1C1C;
    margin-bottom: 0.5rem;
    font-weight: 800;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.description {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.whatsapp-button,
.add-to-cart {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.whatsapp-button:hover,
.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:active,
.add-to-cart:active {
    transform: translateY(0);
}

.whatsapp-button::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Tours Section */
.tours-section {
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    padding: 3rem 5%;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.tour-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #E5E5E5;
    transition: all 0.3s ease;
}

.tour-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #D5D5D5;
    transform: translateY(-3px);
}

.tour-image img,
.placeholder-tour {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 4px;
    display: block;
}

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1C1C1C;
    font-weight: 800;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tour-duration {
    color: #4A4A4A;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.tour-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.tour-features {
    list-style: none;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tour-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.tour-footer {
    display: none;
}

.tour-price {
    font-size: 1.5rem;
    color: #1C1C1C;
    font-weight: 800;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.book-tour {
    background: linear-gradient(135deg, #FFCC02 0%, #DAA520 100%);
    color: #1C1C1C;
    padding: 0.85rem 2.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 48, 9, 0.2);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.book-tour:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.book-tour:active {
    transform: translateY(0);
}

/* Instagram Section */
.instagram-section {
    background-color: var(--bg-light);
    padding: 3rem 5%;
}

.instagram-widget-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
    overflow: hidden;
}

.instagram-widget-container iframe {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Elfsight Instagram Feed Styling */
.elfsight-app-5e15f427-fb23-4f63-8e1f-8ec8b475183f {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-section .elfsight-app-5e15f427-fb23-4f63-8e1f-8ec8b475183f iframe {
    border-radius: 12px;
}

.instagram-instructions {
    background: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.instagram-instructions p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.instagram-instructions ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.instagram-instructions li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.instagram-instructions a {
    color: var(--accent-color);
    text-decoration: none;
}

.instagram-instructions a:hover {
    text-decoration: underline;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}

.instagram-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover .instagram-placeholder {
    transform: scale(1.1);
}

.instagram-link {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.instagram-cta {
    text-align: center;
    margin-top: 3rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFCC02 0%, #DAA520 100%);
    color: #1C1C1C;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 48, 9, 0.2);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 48, 9, 0.3);
}

.instagram-follow-btn svg {
    width: 20px;
    height: 20px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 800;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: white;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, #FFCC02 0%, #DAA520 100%);
    color: #1C1C1C;
    padding: 1.1rem 3.2rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    align-self: flex-start;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.2);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1C1C1C 0%, #2D2D2D 100%);
    padding: 1.5rem 0 1rem;
    border-top: 2px solid rgba(255, 204, 2, 0.3);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px),
        radial-gradient(circle at 20% 30%, rgba(139, 111, 71, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(166, 139, 91, 0.12) 0%, transparent 50%);
    background-size: 40px 40px, 40px 40px, 600px 600px, 800px 800px;
    opacity: 0.6;
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: white;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-icon svg {
    display: block;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFCC02 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(45, 80, 22, 0.2);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        padding: 6rem 5% 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .slider-controls {
        display: none; /* Hide controls on mobile, allow touch scrolling */
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid,
    .frames-grid {
        overflow-x: auto;
    }

    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .instagram-embed-container {
        margin-bottom: 2rem;
    }

    .instagram-embed-container .instagram-media {
        min-width: 280px !important;
        max-width: 100% !important;
    }

    .hero {
        padding: 5rem 5% 3rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    section {
        padding: 4rem 0;
    }

    .tour-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .book-tour {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-social {
        justify-content: center;
    }
}

