/* Global Styles */
:root {
    --primary-color: #ffc300; /* Amber */
    --secondary-color: #f8f9fa;
    --accent-color: #ae8507; /* Hot Toddy */
    --text-color: #010101; /* Black */
    --light-text: #fdfdfd; /* White */
    --dark-text: #010101; /* Black */
    --light-bg: #fdfdfd; /* White */
    --dark-bg: #010101; /* Black */
    --muted-color: #6575a2; /* Waikawa Gray */
    --light-accent: #a0bded; /* Perano */
    --dark-accent: #533e0d; /* Bronze Olive */
    --border-radius: 5px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.btn {
    border-radius: var(--border-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-text);
}

.btn-primary:hover {
    background-color: var(--accent-color); /* Hot Toddy */
    border-color: var(--accent-color);
    color: var(--light-text);
}

.btn-secondary {
    background-color: var(--dark-accent); /* Bronze Olive */
    border-color: var(--dark-accent);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--muted-color); /* Waikawa Gray */
    border-color: var(--muted-color);
    color: var(--light-text);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--accent-color) !important;
}

.text-muted {
    color: var(--muted-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--accent-color) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-dark {
    background-color: var(--dark-bg) !important;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--dark-accent));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color); /* Hot Toddy - #ae8507 */
    font-weight: 500;
    font-size: 1.1rem;
}

/* Header & Navigation */
.navbar {
    background-color: var(--light-bg);
    box-shadow: var(--box-shadow);
}

.navbar-light .navbar-brand {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--accent-color);
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-brand h1.logo {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    color: var(--text-color) !important;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Logo Styles */
.logo-img {
    height: 100px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 576px) {
    .logo-img {
        height: 40px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 76px; /* Adjust based on navbar height */
}

.fullscreen-hero {
    height: 100vh;
    margin-top: 0;
}

.fullscreen-hero .carousel,
.fullscreen-hero .carousel-inner,
.fullscreen-hero .carousel-item {
    height: 100%;
}

.fullscreen-hero .carousel-item {
    background-size: cover;
    background-position: center;
}

.fullscreen-hero .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    padding: 0 15%;
}

.fullscreen-hero .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fullscreen-hero .carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.fullscreen-hero .carousel-control-prev,
.fullscreen-hero .carousel-control-next {
    width: 5%;
}

/* Fix for navbar on top of fullscreen hero */
.fullscreen-hero + .navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: transparent !important;
    transition: background-color 0.3s ease;
}

/* Make navbar transparent initially and solid on scroll */
header .navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
}

.intro-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.intro-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.testimonial-content i {
    color: var(--primary-color);
}

.testimonial-author h4 {
    color: var(--text-color);
}

.rating .fas {
    color: var(--primary-color);
}

/* Destinations Section */
.destinations-section {
    padding: 5rem 0;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.destination-card img {
    transition: var(--transition);
    width: 100%;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-text);
    transition: var(--transition);
}

.destination-card:hover .destination-content {
    background: linear-gradient(to top, rgba(174, 133, 7, 0.9), transparent);
}

.destination-content h3 {
    margin-bottom: 10px;
    color: var(--light-text);
}

/* Team Section */
.team-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    background-color: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.team-card .team-img {
    position: relative;
    overflow: hidden;
}

.team-card .team-img img {
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-card .team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(255, 195, 0, 0.9);
    padding: 15px 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-card .team-social a {
    color: var(--dark-text);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.team-card .team-social a:hover {
    color: var(--light-text);
}

.team-card .team-info {
    padding: 20px;
    text-align: center;
}

.team-card .team-info h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.team-card .team-info p {
    color: var(--muted-color);
    margin-bottom: 0;
}

/* Footer Styles */
.footer-section {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
    padding-left: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--dark-text);
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.cta-section p {
    margin-bottom: 0;
    color: var(--dark-text);
}

.cta-section .btn-primary {
    background-color: var(--dark-accent);
    border-color: var(--dark-accent);
    color: var(--light-text);
}

.cta-section .btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Contact Page Styles */
.contact-item {
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: var(--primary-color);
}

.contact-form-wrapper {
    border-radius: 5px;
}

.contact-image img {
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}

.map-wrapper {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonial Page Styles */
.testimonial-card {
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-card {
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.play-button {
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.play-button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-item {
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Page Styles */
.service-item {
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image img {
    transition: all 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-icon {
    color: var(--primary-color);
}

/* Page Banner Styles */
.page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff !important;
}

/* FAQ Styles */
.accordion-item {
    border-radius: 5px;
    overflow: hidden;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--dark-text);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 195, 0, 0.25);
    border-color: rgba(0, 0, 0, 0.125);
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 195, 0, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
