/*
Custom CSS for 4. Ankara Pediatri Kongresi
*/

/* 1. Color Overrides */
/* Overriding the default skin color to match the requested brand color */
:root {
    --primary-color: #D35400;
}

/* For Porto v8+, primary color variable is --primary */
html {
	--primary: #D35400;
}

/* Overriding specific elements to ensure color consistency */
.bg-primary,
.btn-primary,
.feature-box-primary .feature-box-icon {
    background-color: #D35400 !important;
    border-color: #D35400 !important;
}

.text-primary,
h1.text-primary,
h2.text-primary,
h3.text-primary,
h4.text-primary,
.header-nav-main nav > ul > li > a.active,
.header-nav-main nav > ul > li:hover > a {
    color: #D35400 !important;
}

/* 2. Slogan Style */
/* Aesthetic font for the slogan */
.slogan-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* 3. Hero and Countdown Section */
#ana-sayfa {
    background: url('https://placehold.co/1920x1080/EEDDCC/D35400?text=Cocuk+Gorseli') no-repeat center center;
    background-size: cover;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.countdown-container > div {
    background-color: rgba(211, 84, 0, 0.8);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    min-width: 120px;
    text-align: center;
}

.countdown-container > div .value {
    font-size: 2.5rem;
    font-weight: 700;
}

.countdown-container > div .label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
}

/* 4. General Adjustments */
/* Adding some padding to sections for better spacing */
section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Making tables look a bit more modern */
.table thead {
    background-color: #D35400;
    color: #fff;
}

/* 5. SVG Shape Color */
.svg-fill-color {
    fill: #D35400;
}

/* 6. Header Stick Issue Fix */
html:not(.sticky-header-active) #header.header-effect-shrink .header-body {
	position: absolute !important;
	top: 40px !important;
}
