/* ============================================
   Circle Holiday Company - Global Styles
   ============================================ */

/* Material Symbols Configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Root Variables for Color Theme */
:root {
    --primary: #1E3A3A;
    --secondary: #D4AF37;
    --background: #F5EFE6;
    --text-main: #1A1A1A;
    --text-subtle: #A9A9A9;
    --transition-smooth: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Navigation Styles */
.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    opacity: 0.8;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-primary-lg {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary-lg:hover {
    transform: scale(1.05);
}

/* Card Hover Effects */
.card-hover {
    transition: var(--transition-smooth);
}

.card-hover:hover {
    transform: translateY(-5px);
}

/* Image Zoom Effect */
.image-zoom {
    overflow: hidden;
    border-radius: 0.75rem;
}

.image-zoom img,
.image-zoom .bg-image {
    transition: transform 0.5s ease;
}

.image-zoom:hover img,
.image-zoom:hover .bg-image {
    transform: scale(1.1);
}

/* Footer Styles */
footer {
    background-color: rgba(30, 58, 58, 0.9);
    color: white;
}

footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: var(--transition-smooth);
}

footer a:hover {
    color: white;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
}

@media (min-width: 769px) {
    .nav-mobile {
        display: none;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a4f4f;
}

