/* Hensting Alpacas - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Logo */
.hero-logo {
    margin-top: 40px;
    text-align: center;
}

.hero-logo img {
    max-height: 80px !important;
    max-width: 250px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 15px !important;
    padding: 10px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%), 
                url('../../images/slide02.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative; /* IMPORTANT: Added for phone positioning */
    overflow: hidden;
    min-height: 500px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInDown 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
}

@keyframes slideInDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Hero Phone Button - Enhanced with stronger specificity */
.hero .hero-phone,
.booking-hero .hero-phone {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 1.1em !important;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3) !important;
    transition: all 0.3s ease !important;
    z-index: 100 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: none !important;
    outline: none !important;
}

.hero .hero-phone:hover,
.booking-hero .hero-phone:hover {
    background: linear-gradient(135deg, #219a52 0%, #27ae60 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.hero .hero-phone .phone-icon,
.booking-hero .hero-phone .phone-icon {
    font-size: 1.2em !important;
}

/* Ensure hero sections have relative positioning */
.hero,
.booking-hero {
    position: relative !important;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* App Download Section */
.app-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 40px;
    margin: 40px 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-badges img {
    width: 160px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.app-badges img:hover {
    transform: scale(1.05);
}

/* Special Announcement */
.announcement {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 30px;
    margin: 30px 0;
    border-radius: 15px;
    border-left: 5px solid #00b894;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Video Section */
.video-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.video-text {
    flex: 1;
    min-width: 300px;
}

.video-text h3 {
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 20px;
}

/* Content Sections */
.content-section {
    background: rgba(255,255,255,0.95);
    margin: 40px 0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.content-section h2 {
    color: #2d3436;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 30px 0;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

/* Polished card/gallery images */
.feature-card img,
.content-section img,
.card img,
.gallery img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 24px rgba(102,126,234,0.08), 0 1.5px 4px rgba(0,0,0,0.08);
    border: 1.5px solid #f1f2fa;
    background: #f8f9fa;
    margin-bottom: 14px;
    transition: transform 0.22s cubic-bezier(.4,1.5,.5,1), box-shadow 0.22s cubic-bezier(.4,1.5,.5,1);
    object-fit: cover;
}

.feature-card img:hover,
.content-section img:hover,
.card img:hover,
.gallery img:hover {
    transform: scale(1.035);
    box-shadow: 0 12px 36px rgba(102,126,234,0.15), 0 2px 8px rgba(0,0,0,0.12);
    border-color: #d1d8e6;
}
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.feature-card h3 {
    color: #2d3436;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

ul li::before {
    content: 'ðŸ¦™';
    position: absolute;
    left: 0;
    top: 8px;
}

/* FAQ Section */
.faq-item {
    background: rgba(255,255,255,0.8);
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255,255,255,1);
    transform: translateX(5px);
}

.faq-item strong {
    color: #2d3436;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.contact-info a {
    color: #ffeaa7;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.location-tag {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.location-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero { 
        padding: 60px 0; 
        min-height: 400px;
        background-attachment: scroll; /* Fix for mobile */
    }
    .hero-logo img {
        max-height: 60px !important;
        max-width: 180px !important;
    }
    .hero-logo {
        margin-top: 30px;
    }
    
    /* Hero Phone Mobile - Enhanced */
    .hero .hero-phone,
    .booking-hero .hero-phone {
        top: 10px !important;
        right: 10px !important;
        padding: 10px 16px !important;
        font-size: 1em !important;
    }
    
    .video-section { flex-direction: column; }
    .app-badges { flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero .hero-phone,
    .booking-hero .hero-phone {
        position: static !important;
        display: inline-flex !important;
        margin: 20px auto 0 !important;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================
   NAVIGATION STYLES
   ============================================== */

/* Navigation Container */
.main-navigation {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    gap: 20px;
}

/* Navigation Logo */
.main-navigation .nav-logo img {
    height: 45px !important;
    width: auto !important;
    max-height: 45px !important;
    max-width: none !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.9) !important;
    padding: 5px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    display: inline-block !important;
    margin: 0 !important;
    transform: none !important;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2d3436;
    gap: 12px;
}

.nav-logo-text {
    font-weight: bold;
    font-size: 1.2em;
    background: linear-gradient(45deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2d3436;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

.nav-link.nav-highlight {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.nav-link.nav-locked {
    opacity: 0.7;
}

.nav-apps {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-apps .app-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-apps .app-link img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
}

/* Simple Mobile Navigation - Following Working Pattern */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 22px;
    height: 2px;
    background: #2d3436;
    margin: 2px 0;
    transition: 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    min-width: 200px;
    display: none;
    list-style: none;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #667eea;
    color: white;
}

.arrow {
    font-size: 0.8em;
    margin-left: 5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 5px 0;
    }
    
    .nav-link {
        padding: 12px 15px;
        display: block;
        background: #f8f9fa;
        border-radius: 8px;
        color: #2d3436;
        text-decoration: none;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f0f0f0;
        margin: 5px 0;
        border-radius: 8px;
        display: none;
    }
    
    .nav-item.mobile-open .dropdown-menu {
        display: block;
    }
    
    .nav-logo-text {
        display: none;
    }
    
    .nav-apps {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        justify-content: center;
    }
}

/* ==============================================
   BOOKING PAGE STYLES
   ============================================== */

.booking-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), url('images/slide02.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
    border-radius: 20px;
    min-height: 400px;
    position: relative;
}

.walk-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.walk-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.walk-card:hover {
    transform: translateY(-5px);
}

.walk-card.morning {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.walk-card.afternoon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.walk-card.accessible {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.walk-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.walk-card .time {
    font-size: 1.1em;
    font-weight: bold;
    margin: 10px 0;
}

.pricing-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.price-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.price-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.price-card h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #2d3436;
}

.price-card.featured h4 {
    color: white;
}

.price {
    font-size: 1.8em;
    font-weight: bold;
    color: #667eea;
    margin: 10px 0;
}

.price-card.featured .price {
    color: white;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    margin: 20px 0;
}

.info-card h4 {
    color: #2d3436;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li::before {
    content: "âœ"";
    color: #667eea;
    font-weight: bold;
    margin-right: 10px;
}

.warning-card {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b95 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
}

.warning-card h4 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.gift-voucher {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
}

.seasonal-highlight {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
}

.section-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.section-header h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.section {
    background: white;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-content {
    padding: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .pricing-3-col {
        grid-template-columns: 1fr !important;
    }
    
    .section-content {
        padding: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-3-col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}