/* Main CSS for Luxury Vacation Club Template */

/* Root Variables for Color Palette */
:root {
    /* Primary Colors */
    --primary-color-1: #F2C94C; /* Elegant Gold */
    --primary-color-2: #55286F; /* Deep Purple */
    --primary-color-3: #D1A080; /* Warm Terracotta */
    --primary-color-4: #48A9A6; /* Teal Green */
    --primary-color-5: #E4572E; /* Sunset Orange */
    
    /* Light and Dark Shades */
    --primary-color-1-light: #F8E2A8;
    --primary-color-1-dark: #D4A82E;
    --primary-color-2-light: #7A4D94;
    --primary-color-2-dark: #3E1D50;
    --primary-color-3-light: #E7C8B6;
    --primary-color-3-dark: #B0835F;
    --primary-color-4-light: #78C7C4;
    --primary-color-4-dark: #347D7A;
    --primary-color-5-light: #F08B6B;
    --primary-color-5-dark: #C43E1C;
    
    /* Neutrals */
    --neutral-light: #F9F9F9;
    --neutral-medium: #E0E0E0;
    --neutral-dark: #333333;
    
    /* Font Sizes */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-medium: 1.25rem;
    --font-size-large: 1.5rem;
    --font-size-xlarge: 2rem;
    --font-size-xxlarge: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--neutral-dark);
    line-height: 1.6;
    background-color: var(--neutral-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color-2);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color-2-light);
}

/* Utility Classes */
.section-padding {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color-1);
    color: var(--neutral-dark);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color-1-dark);
    color: var(--neutral-light);
}

.btn-secondary {
    background-color: var(--primary-color-2);
    color: var(--neutral-light);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color-2-light);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

header .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-large);
    color: var(--primary-color-2);
    font-weight: 700;
}

header .nav-link {
    color: var(--neutral-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

header .nav-link:hover {
    color: var(--primary-color-1);
}

header .navbar-toggler {
    border: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../HEL_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--neutral-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color-1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 0.2;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-4);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--font-size-xxlarge);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: var(--font-size-large);
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    background-color: var(--neutral-light);
    position: relative;
}

.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-color: var(--primary-color-3-light);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(200px, -200px);
    z-index: 0;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color-1);
}

.about-feature h4 {
    font-size: var(--font-size-medium);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background-color: var(--neutral-light);
    position: relative;
}

.services-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color-4-light);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(-150px, 150px);
    z-index: 0;
}

.service-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color-1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-color-2);
}

.service-price {
    font-size: var(--font-size-large);
    color: var(--primary-color-5);
    font-weight: 700;
    margin: 1rem 0;
}

.service-features {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
    background-color: var(--primary-color-2);
    color: var(--neutral-light);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--primary-color-2-light);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.2;
}

.features-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.features-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.features-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color-1);
}

.features-card h4 {
    color: var(--neutral-light);
}

/* Price Plan Section */
.price-plan-section {
    background-color: var(--neutral-light);
}

.price-card {
    padding: 3rem 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.price-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-1-light);
    opacity: 0.2;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
}

.price-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card h4 {
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: var(--font-size-xlarge);
    font-weight: 700;
    color: var(--primary-color-5);
    margin: 1.5rem 0;
}

.price-features {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.price-features li {
    margin-bottom: 0.75rem;
}

/* Team Section */
.team-section {
    background-color: var(--neutral-light);
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.team-image img {
    transition: all 0.3s ease;
}

.team-image:hover img {
    transform: scale(1.05);
}

.team-info h4 {
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--primary-color-4);
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--primary-color-1-light);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color-1);
    opacity: 0.2;
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

.review-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 1rem;
    position: relative;
}

.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary-color-1-light);
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.2;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.review-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.review-author-info h5 {
    margin-bottom: 0;
}

.review-author-info p {
    margin-bottom: 0;
    font-size: var(--font-size-small);
    color: var(--primary-color-4);
}

/* Core Info Section */
.core-info-section {
    background-color: var(--neutral-light);
}

.core-info-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.core-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.core-info-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-3);
}

/* Contact Section */
.contact-section {
    background-color: var(--neutral-light);
    position: relative;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--neutral-medium);
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

/* Blog Section */
.blog-section {
    background-color: var(--neutral-light);
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-content h4 {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--neutral-light);
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    padding: 1.5rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color-1-light);
    color: var(--primary-color-2);
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--neutral-light);
    padding: var(--spacing-xl) 0;
}

.gallery-item {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-item img {
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color-2-dark);
    color: var(--neutral-light);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color-2);
    opacity: 0.2;
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

footer h5 {
    color: var(--neutral-light);
    margin-bottom: 1.5rem;
    font-size: var(--font-size-medium);
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--neutral-medium);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color-1);
}

#site-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--neutral-medium);
}

/* Space Page */
.space-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--primary-color-2-light);
    padding: 2rem 0;
    margin-top: 76px;
}

.breadcrumb-section img {
    max-height: 50px;
} 