/* Custom Variables */
:root {
    --mint-primary: #7ED6C3;
    --mint-light: #A8E6D0;
    --blue-primary: #6EC1FF;
    --coral: #FF6F61;
    --text-dark: #2F3A3F;
    --bg-warm: #F8FAFB;
    --white: #FFFFFF;
    --shadow-soft: 0 8px 24px rgba(20,28,32,0.08);
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-warm);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

/* Navigation */
.top-bar {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-bar .form-control {
    background: rgba(255,255,255,0.9);
    width: 300px;
}

.top-bar .form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgba(126, 214, 195, 0.25);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    color: var(--text-dark) !important;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.nav-link {
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--mint-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link {
    color: var(--text-dark) !important;
    transition: color 0.2s ease;
}

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

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: var(--mint-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

/* Custom Badge */
.bg-mint {
    background-color: var(--mint-primary) !important;
    color: var(--text-dark);
}

/* Content Wrapper */
.content-wrapper {
    min-height: calc(100vh - 80px);
}

/* Buttons */
.btn-primary {
    background-color: var(--mint-primary);
    border-color: var(--mint-primary);
    color: var(--text-dark);
    border-radius: 14px;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #86DAC8, #74D1BE);
    border-color: var(--mint-primary);
}

.btn-primary:disabled {
    background-color: #CDEEE4;
    border-color: #CDEEE4;
}

/* Shadows */
.shadow-sm {
    box-shadow: var(--shadow-soft) !important;
}

/* Contact Page Styles */
.contact-info-section .card,
.contact-form-section .card {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-section .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border-radius: 14px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(47,58,63,0.1);
    transition: all 0.2s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--mint-primary);
    box-shadow: 0 0 0 0.2rem rgba(126,214,195,0.25);
}

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

.accordion-button:focus {
    border-color: var(--mint-primary);
    box-shadow: 0 0 0 0.2rem rgba(126,214,195,0.25);
}

/* Payment Methods Icons */
.payment-methods i {
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: default;
}

.payment-methods i:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Carousel Styles */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.carousel-inner {
    border-radius: 20px;
}

.carousel-item {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item img {
    filter: brightness(0.95);
    transition: filter 0.3s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel:hover .carousel-item.active img {
    transform: scale(1.02);
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20%;
    left: 15%;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-caption.text-dark {
    color: var(--text-dark) !important;
}

.carousel-caption h1,
.carousel-caption h2 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.carousel-caption p {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0.3);
    width: 24px;
    height: 24px;
}

.carousel-indicators {
    display: none;
}

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

.carousel-caption .btn {
    box-shadow: 0 4px 15px rgba(126, 214, 195, 0.4);
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    box-shadow: 0 6px 20px rgba(126, 214, 195, 0.6);
    transform: translateY(-2px);
}
