/* ==========================================================================
   CSS VARIABLES & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    --luxury-gold: #d4af37;
    --deep-brown: #2c1810;
    --elegant-purple: #4a2c6a;
    --light-purple: #6a4c93;
    --font-luxury: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --shadow-luxury: 0 4px 15px rgba(0,0,0,0.1);
}

/* ==========================================================================
   BASE STYLES & TYPOGRAPHY
   ========================================================================== */
body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* ==========================================================================
   TOP HEADER
   ========================================================================== */
.top-header {
    background: #e0e0e0;
    border-bottom: 1px solid #dee2e6;
    font-size: 15px;
}

.contact-item {
    color: #333;
    font-weight: 500;
}

.directory-badge {
    background: var(--deep-brown);
    color: white;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section .hero-logo img {
    max-height: 200px;
    transition: transform 0.3s ease;
}

.hero-section .hero-logo img:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   LUXURY DIVIDER
   ========================================================================== */
.luxury-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--elegant-purple), var(--luxury-gold));
    opacity: 0.8;
    margin: 0;
}

/* ==========================================================================
   TIMER SECTION
   ========================================================================== */
.timer-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	font-size:15px;
}

.timer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.timer-content {
    position: relative;
    z-index: 2;
}

.countdown {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #000;
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.stat-number {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #000;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

/* ==========================================================================
   CONFERENCE SCHEDULE
   ========================================================================== */
table{
	font-size:18px;
}

table td:nth-child(2),
table td:nth-child(3) {
    white-space: nowrap;
}

/* ==========================================================================
   DESCRIPTION SECTION
   ========================================================================== */
   
.section-title {
    font-family: var(--font-luxury);
    color: var(--deep-brown);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
}

.description-text {
    color: #555;
	font-size:22px;
	
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.luxury-footer {
    background: #000 !important;
}

.luxury-logo img {
    height: 103px !important;
    width: auto !important;
}

.footer-logo img {
    height: 68px !important;
    width: auto !important;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    color: white;
}

.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.twitter { background: #000; border: 1px solid #333; }
.social-icon.youtube { background: #ff0000; }
.social-icon.linkedin { background: #0077b5; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 1s ease-in; }

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .hero-section .hero-logo img { max-height: 150px; }
    .stat-number { font-size: clamp(24px, 3vw, 32px); }
    .directory-badge { font-size: 11px; padding: 5px 12px; }
    .countdown { font-size: 16px; }
}

@media (max-width: 576px) {
    .hero-section .hero-logo img { max-height: 120px; }
    .contact-item span { font-size: 11px; }
    .timer-content { font-size: 14px; }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.social-icon:focus, button:focus, a:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .timer-section::before, .conference-item {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}


/* External Calendar Button */
.btn-luxury-external {
    background: linear-gradient(135deg, var(--luxury-gold), #b8941f);
    border: 2px solid var(--luxury-gold);
    color: var(--deep-brown);
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: right;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-luxury);
}

.btn-luxury-external:hover {
    background: linear-gradient(135deg, #b8941f, var(--luxury-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: var(--deep-brown);
    text-decoration: none;
}

.btn-luxury-external:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}