/* Global Styles */
:root {
    --deep-teal: #106B77;
    --gold-accent: #D4AF37;
    --soft-cream: #F9F5EB;
    --charcoal: #333333;
    --sage-green: #7A9E7E;
    --dusty-rose: #D8A7B1;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
}

/* Custom Font Classes */
.font-raleway {
    font-family: 'Raleway', sans-serif;
}

/* Custom Color Classes */
.text-deep-teal {
    color: var(--deep-teal);
}

.text-gold-accent {
    color: var(--gold-accent);
}

.text-charcoal {
    color: var(--charcoal);
}

.text-sage-green {
    color: var(--sage-green);
}

.text-dusty-rose {
    color: var(--dusty-rose);
}

.bg-deep-teal {
    background-color: var(--deep-teal);
}

.bg-gold-accent {
    background-color: var(--gold-accent);
}

.bg-soft-cream {
    background-color: var(--soft-cream);
}

.bg-charcoal {
    background-color: var(--charcoal);
}

.bg-sage-green {
    background-color: var(--sage-green);
}

.bg-dusty-rose {
    background-color: var(--dusty-rose);
}

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

.bg-white {
    background-color: var(--white);
}

.bg-off-white {
    background-color: var(--off-white);
}

.border-deep-teal {
    border-color: var(--deep-teal);
}

.border-gold-accent {
    border-color: var(--gold-accent);
}

.border-sage-green {
    border-color: var(--sage-green);
}

.border-dusty-rose {
    border-color: var(--dusty-rose);
}

.fas {
  color: black;
}

/* Global Typography */
body {
    line-height: 1.6;
    color: var(--charcoal);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    transition: all 0.3s ease;
}

/* Custom Background Pattern */
.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Circular Focus Elements for Editorial Layout */
.circular-focus {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

/* Custom Animation Classes */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom Form Styling */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(16, 107, 119, 0.3);
}

button {
    transition: all 0.3s ease;
}

/* Custom Card Styling */
.card-hover {
    transition: all 0.3s ease;
}

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

/* Responsive Navigation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Custom List Styling */
.custom-list {
    list-style: none;
    padding-left: 1.5rem;
}

.custom-list li {
    position: relative;
    margin-bottom: 0.5rem;
}

.custom-list li::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--deep-teal);
}

/* IntlTelInput Custom Styling */
.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 10;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--deep-teal);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #095962;
}

/* Mobile-first Media Queries */
@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Adjust padding for mobile */
    .section {
        padding: 3rem 1rem;
    }
    
    /* Stack grid items on mobile */
    .grid {
        grid-template-columns: 1fr;
    }
    
    /* Adjust spacing for mobile */
    .mb-mobile-lg {
        margin-bottom: 2rem;
    }
}

/* Additional animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Fashion editorial specific styles */
.editorial-image {
    position: relative;
    overflow: hidden;
}

.editorial-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.editorial-image:hover::after {
    opacity: 1;
}

/* Circular focal points specific styling */
.circular-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.focal-point {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    position: relative;
}

.focal-point:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.focal-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: rgba(16, 107, 119, 0.8);
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.focal-point:hover .focal-content {
    opacity: 1;
}

/* Custom blur effects */
.blur-3xl {
    filter: blur(40px);
}

/* FAQ accordion styles */
.faq-question {
    position: relative;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    max-height: 500px;
}

/* Cookie consent custom styles */
#cookie-consent-banner {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Modal transition effects */
#cookie-settings-modal {
    transition: opacity 0.3s ease;
}

/* Accessibility focus styles */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--deep-teal);
    outline-offset: 2px;
}

/* Custom select styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23106B77' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Responsive typography scaling */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 17px;
    }
}

@media (min-width: 1280px) {
    html {
        font-size: 18px;
    }
}