/* Brand Colors */
:root {
    --primary-color: #F7DDCD;
    --white: #ffffff;
    --black: #000000;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    letter-spacing: 0.5px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand .brand-text {
    color: var(--black);
    font-weight: 700;
    margin: 0;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: url('Rosmatic.jpeg') center center / cover no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--black);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 221, 205, 0.65);
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    text-align: center;
}

.about-section .section-title {
    font-size: 2rem;
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.7;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.about-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.vision-box, .mission-box {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
}

.vision-box h4, .mission-box h4 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vision-box i, .mission-box i {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.vision-box p, .mission-box p {
    color: var(--black);
    line-height: 1.6;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    background: var(--primary-color);
}

.service-category {
    margin-bottom: 4rem;
}

.service-category .row {
    justify-content: flex-start;
}

.category-title {
    color: var(--black);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--black);
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card-with-image {
    background: url('Fotona Laser Treatments/EndoTight-Fotona.png') center center / cover no-repeat;
    padding: 2rem;
    min-height: 450px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 0;
}

.service-card-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 0;
    z-index: 1;
    pointer-events: none;
    transform: none !important;
}

.service-card-with-image h4 {
    color: #ffffff !important;
    margin: 0 0 1.5rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 2rem;
}

.service-card-with-image ul {
    padding: 0;
    margin: 2rem 0 0 0;
    position: relative;
    z-index: 2;
    text-align: left;
    list-style-position: outside;
    padding-left: 1.5rem;
}

.service-card-with-image ul li {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.3rem;
}

.service-card-with-image-thread {
    background: url('Thread Lifting/Face-Thread-Lift.png') center center / cover no-repeat;
    padding: 2rem;
    min-height: 450px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 0;
}

.service-card-with-image-thread::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 0;
    z-index: 1;
    pointer-events: none;
    transform: none !important;
}

.service-card-with-image-thread h4 {
    color: #ffffff !important;
    margin: 0 0 1.5rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 2rem;
}

.service-card-with-image-thread ul {
    padding: 0;
    margin: 2rem 0 0 0;
    position: relative;
    z-index: 2;
    text-align: left;
    list-style-position: outside;
    padding-left: 1.5rem;
}

.service-card-with-image-thread ul li {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.3rem;
}

/* Shared styles for all service cards with images */
[class*="service-card-with-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    min-height: 450px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 0;
}

[class*="service-card-with-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 0;
    z-index: 1;
    pointer-events: none;
    transform: none !important;
}

[class*="service-card-with-image"] h4 {
    color: #ffffff !important;
    margin: 0 0 1.5rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 2rem;
}

[class*="service-card-with-image"] ul {
    padding: 0;
    margin: 2rem 0 0 0;
    position: relative;
    z-index: 2;
    text-align: left;
    list-style-position: outside;
    padding-left: 1.5rem;
}

[class*="service-card-with-image"] ul li {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.3rem;
}

/* Specific background images for each service */
.service-card-with-image-skin {
    background-image: url('Skin Care Devices/Medical-Facial.png');
}

.service-card-with-image-injectables {
    background-image: url('Injectables & Facial Rejuvenation/Face-Fillers.png');
}

.service-card-with-image-boosters {
    background-image: url('Skin Boosters & Collagen Stimulators/PRP-Face.png');
}

.service-card-with-image-peels {
    background-image: url('Chemical Peels/Yellow-Peel.png');
}

.service-card-with-image-laser {
    background-image: url('Laser Treatments (Non-Surgical)/Laser-Hair-Removal.png');
}

.service-card-with-image-body {
    background-image: url('Body Contouring & Shaping Devices/CM-Slim.png');
}

.service-card-with-image-massage {
    background-image: url('massage/Relaxing-Massage.png');
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--black);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    color: var(--black);
    margin-bottom: 1rem;
    text-align: center;
}

.service-card ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--black);
    transition: color 0.3s ease;
    opacity: 0.8;
    font-size: 1.1rem;
}

.service-card ul li:hover {
    color: var(--black);
    opacity: 1;
}

.service-card ul li:last-child {
    border-bottom: none;
}

/* Service Detail Cards for Individual Service Pages */
.service-detail-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--black);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: bold;
}

/* Service Card Links for Home Page */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.service-card-link:hover .service-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card-link:hover .service-card::before {
    transform: scaleX(1);
}

.service-card-link:hover .service-card .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--black);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--black);
}

.contact-card h4 {
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--black);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.contact-card .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card .btn-primary {
    background: var(--primary-color);
    color: var(--black);
}

.contact-card .btn-primary:hover {
    background: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--white);
    margin: 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--black);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card, .contact-card {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .contact-card {
        padding: 1.5rem;
    }
    
    .about-content {
        padding: 1rem 0;
    }
    
    .vision-box, .mission-box {
        padding: 1.5rem;
    }
}

/* Button Styles */
.btn-primary {
    background: var(--black);
    border: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--black);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border: 2px solid var(--black);
    color: var(--black);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--black);
    color: var(--black);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.min-vh-100 {
    min-height: 100vh;
}

/* Additional responsive adjustments */
@media (max-width: 1200px) {
    .service-detail-card .service-image img {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .service-detail-card .service-image img {
        height: 180px;
    }
    
    .service-content {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .service-detail-card .service-image img {
        height: 160px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
} 