/* Custom CSS for Arooma Spa And Saloon */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
.main-header {
    background-color: #000000;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    color: #ffffff;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: #e2b34a;
}

/* Mobile Menu Checkbox Hack (Desktop: hidden) */
.menu-checkbox {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: #fcfcfc;
}

/* Hero Section */
.hero-section {
    background-color: #f7f7f7;
    background-image: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
    padding: 100px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    text-align: left;
}

.about-content h2::after {
    left: 0;
    transform: none;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    color: #000000;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    color: #555555;
    margin-bottom: 30px;
}

/* General Headings */
h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    text-align: center;
    color: #000000;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e2b34a;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #111111;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444444;
}

.about-content p {
    text-align: left;
    margin-left: 0;
}

.why-choose-us-section p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rounded-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.shadow-img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Button */
.btn-primary {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #222222;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: #000000;
}

/* Why Choose Us & Privacy */
.reasons-list {
    margin: 30px auto;
    max-width: 600px;
}

.reasons-list li {
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    color: #444444;
}

.reasons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #e2b34a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Details */
.contact-details {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.15rem;
}

.contact-details strong {
    color: #000000;
}

.contact-details a {
    color: #000000;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.contact-details a:hover {
    color: #e2b34a;
    border-bottom: 1px solid #e2b34a;
}

/* Privacy Policy Page specifics */
.privacy-section h1 {
    text-align: center;
    margin-bottom: 10px;
}

.privacy-section p {
    text-align: left;
    max-width: 100%;
}

.privacy-section h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.privacy-section h2::after {
    left: 0;
    transform: none;
}

/* Footer */
.main-footer {
    background-color: #000000;
    color: #aaaaaa;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #222222;
}

.main-footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #aaaaaa;
}

.main-footer a {
    color: #ffffff;
}

.main-footer a:hover {
    color: #e2b34a;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111111;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    }

    .menu-checkbox:checked~.main-nav {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-container,
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .about-content {
        text-align: center;
        width: 100%;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content p {
        text-align: center;
    }
}

/* Desktop Explicit Rules */
@media (min-width: 769px) {

    .menu-icon,
    .menu-checkbox {
        display: none !important;
    }

    .main-nav {
        display: block !important;
    }
}