/*
Theme Name: Kharis Theme
Theme URI: http://example.com/kharis-theme
Author: Antigravity
Author URI: http://example.com
Description: A premium medical clinic theme inspired by modern healthcare designs.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kharis-theme
*/

@font-face {
    font-family: 'GT Super Display';
    src: url('./assets/fonts/GT-Super-Display-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Super Display';
    src: url('./assets/fonts/GT-Super-Display-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Nunito Local Fonts */
@font-face {
    font-family: 'Nunito';
    src: url('assets/fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('assets/fonts/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('assets/fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* GT Super Display Bold */
@font-face {
    font-family: 'GT Super Display';
    src: url('./assets/fonts/GT-Super-Display-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #05053B;
    --secondary-color: #99825E;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-radius: 12px;
    --font-family: 'Nunito', sans-serif;
    --heading-font: 'GT Super Display', serif;
}

.medical-banner {
    background-color: var(--primary-color) !important;
    background-image: url('assets/images/medical-pattern.png');
    background-repeat: repeat;
    background-size: 300px;
    background-blend-mode: multiply;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img, .custom-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo a {
    text-decoration: none;
    display: block;
}

.main-navigation {
    font-family: 'Nunito', sans-serif !important;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-signup {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.3s, background 0.3s;
}

.btn-signup:hover {
    background: #003a33;
    transform: translateY(-2px);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    background-color: #f0f7f6;
    overflow: hidden;
    height: 500px;
}

.slider-container, .hero-slide {
    height: 100%;
}

.hero-slide {
    display: none;
    padding: 0;
    animation: fadeEffect 1s;
    position: relative;
}

.hero-slide .container {
    height: 100%;
}

.hero-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 4.5rem;
    color: #0570ff;
    line-height: 1;
    margin: 10px 0 25px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-image img {
    width: 100%;
    border-radius: 50% 50% 0 50%;
    object-fit: cover;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
}

/* Services Section */
.service-item {
    transition: transform 0.3s ease;
}

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

.service-image {
    overflow: hidden;
    border-radius: 20px;
}

.service-image img {
    transition: transform 0.5s ease !important;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}
