
/* ============================================
   DVC MARKET CUSTOM THEME
   Colors: Orange (#FF9661), Cream (#F7F2E0, #FCFAF4)
   ============================================ */

:root {
    --dvc-orange: #FF9661;
    --dvc-orange-dark: #FF7F3D;
    --dvc-cream-dark: #F7F2E0;
    --dvc-cream-light: #FCFAF4;
    --dvc-text: #333333;
    --dvc-text-light: #666666;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

body {
    background-color: var(--dvc-cream-light) !important;
    font-family: 'Open Sans', Arial, sans-serif !important;
    color: var(--dvc-text) !important;
}

/* ============================================
   HERO SECTION WITH ANIMATION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, var(--dvc-cream-light) 0%, var(--dvc-cream-dark) 100%);
    overflow: hidden;
    padding: 80px 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dvc-text);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--dvc-text-light);
    margin-bottom: 40px;
}

/* Animated Background Shapes */
.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--dvc-orange);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-dvc {
    background-color: var(--dvc-orange) !important;
    border-color: var(--dvc-orange) !important;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 150, 97, 0.3);
}

.btn-primary:hover,
.btn-dvc:hover {
    background-color: var(--dvc-orange-dark) !important;
    border-color: var(--dvc-orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 150, 97, 0.4);
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-header {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav a {
    color: var(--dvc-text) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--dvc-orange) !important;
}

/* ============================================
   PROPERTY CARDS
   ============================================ */

.property-card {
    background: #fff !important;
    border: 2px solid transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.property-card:hover {
    border-color: var(--dvc-orange) !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.property-price {
    color: var(--dvc-orange) !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.property-badge {
    background-color: var(--dvc-orange) !important;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-light {
    background-color: var(--dvc-cream-light) !important;
    padding: 60px 0;
}

.section-dark {
    background-color: var(--dvc-cream-dark) !important;
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dvc-text);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dvc-text-light);
    text-align: center;
    margin-bottom: 50px;
}

/* ============================================
   RESORT SHOWCASE
   ============================================ */

.resort-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.resort-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.resort-item:hover {
    transform: scale(1.05);
}

.resort-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.resort-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 20px;
}

.resort-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* ============================================
   SEARCH BOX
   ============================================ */

.search-box {
    background: #fff !important;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-input {
    border: 2px solid var(--dvc-cream-dark);
    border-radius: 8px;
    padding: 12px 20px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--dvc-orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 150, 97, 0.2);
    outline: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-section {
    background-color: var(--dvc-cream-dark) !important;
    border-top: 3px solid var(--dvc-orange);
    padding: 60px 0 30px;
}

.footer-title {
    color: var(--dvc-orange);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--dvc-text-light);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--dvc-orange) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

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

.border-orange {
    border-color: var(--dvc-orange) !important;
}

