/* Customization using CSS variables for a luxurious palette */

 :root {
    --color-primary: #1A1A1A;
    /* Deep Charcoal/Black */
    --color-secondary: #FDFDFD;
    /* Near White */
    --color-accent: #B8860B;
    /* Deep Gold/Bronze */
    --color-feminine: #a2448a;
    /* Soft feminine lavender */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: var(--color-secondary);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}


/* Custom class for the rich accent background in Hero */

.hero-bg {
    background-color: var(--color-primary);
    /* Subtle dark gradient for depth */
    background-image: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(50, 50, 50, 0.9) 100%);
}


/* Custom styling for the Instagram link */

.ig-link {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s;
}

.ig-link:hover {
    transform: scale(1.1);
    color: #D4AF37;
    /* Brighter gold on hover */
}


/* Mobile menu styles */

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-secondary);
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }
    .desktop-menu {
        display: none;
    }
}


/* Feminine accent elements */

.feminine-accent {
    color: var(--color-feminine);
}

.border-feminine {
    border-color: var(--color-feminine);
}

.bg-feminine-light {
    background-color: rgba(193, 154, 183, 0.1);
}


/* Gold accent color */

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


/* Logo placeholder styling */

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-feminine) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.footer-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-feminine) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin: 0 auto 15px;
}


/* Footer logo image (replaces text 'DM') */

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}


/* Image placeholder styling */

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(193, 154, 183, 0.2) 0%, rgba(184, 134, 11, 0.2) 100%);
    border: 2px dashed var(--color-feminine);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-feminine);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, rgba(193, 154, 183, 0.3) 0%, rgba(184, 134, 11, 0.3) 100%);
    border-color: var(--color-accent);
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
}

.image-placeholder-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}


/* Specific image used in the Philosophy placeholder */

.image-placeholder .philosophy-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}


/* Course image inside .image-placeholder (small card variant) */

.image-placeholder .course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}


/* Hero image placeholder */

.hero-image-placeholder {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(193, 154, 183, 0.3) 0%, rgba(184, 134, 11, 0.3) 100%);
    border: 3px solid var(--color-feminine);
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-feminine);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
}

.hero-image-placeholder-text {
    font-size: 14px;
    font-weight: 500;
}


/* Hero image styling */

.hero-image-container {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    margin: 0 auto 40px;
    overflow: hidden;
    border: 3px solid var(--color-feminine);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}