/* CSS Variables */
:root {
    /* Colors */
    --topmybeauty-white: #ffffff;
    --topmybeauty-cream: #E9E3DF;
    --topmybeauty-orange: #FF7A30;
    --topmybeauty-blue: #465C88;
    --topmybeauty-black: #000000;
    --topmybeauty-gray: #f5f5f5;
    --topmybeauty-dark-gray: #333333;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--topmybeauty-black);
    background-color: var(--topmybeauty-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
}

/* Container */
.topmybeauty-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Button Styles */
.topmybeauty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-secondary);
    border: none;
}

.topmybeauty-btn-primary {
    background-color: var(--topmybeauty-orange);
    color: var(--topmybeauty-white);
}

.topmybeauty-btn-primary:hover {
    background-color: var(--topmybeauty-black);
    transform: translateY(-2px);
}

.topmybeauty-btn-secondary {
    background-color: transparent;
    color: var(--topmybeauty-black);
    border: 1px solid var(--topmybeauty-black);
}

.topmybeauty-btn-secondary:hover {
    background-color: var(--topmybeauty-black);
    color: var(--topmybeauty-white);
    transform: translateY(-2px);
}

.topmybeauty-btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.topmybeauty-btn i {
    margin-right: var(--space-sm);
}

/* Header Styles */
.topmybeauty-header {
    position: relative;
    padding: var(--space-md) 0;
    background-color: var(--topmybeauty-cream);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
    transition: transform 0.3s ease;
}

.topmybeauty-header.hidden {
    transform: translateY(-100%);
}

.topmybeauty-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topmybeauty-logo {
    font-family: var(--font-secondary);
}


/* Text logo styles */
.topmybeauty-logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--topmybeauty-blue);
    margin: 0;
    transition: color 0.3s ease;
}

.topmybeauty-logo a:hover h1 {
    color: var(--topmybeauty-orange);
}

.topmybeauty-nav-desktop ul {
    display: flex;
    gap: var(--space-lg);
}

.topmybeauty-nav-desktop a {
    font-weight: 500;
    position: relative;
}

.topmybeauty-nav-desktop a:hover {
    color: var(--topmybeauty-orange);
}

.topmybeauty-nav-desktop a.active {
    color: var(--topmybeauty-orange);
}

.topmybeauty-nav-desktop a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--topmybeauty-orange);
}

.topmybeauty-burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--topmybeauty-blue);
}

/* Mobile Navigation */
.topmybeauty-nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--topmybeauty-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: var(--space-lg);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.topmybeauty-nav-mobile.open {
    right: 0;
}

.topmybeauty-nav-close {
    text-align: right;
    margin-bottom: var(--space-lg);
}

.topmybeauty-nav-close button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--topmybeauty-dark-gray);
}

.topmybeauty-nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.topmybeauty-nav-mobile a {
    font-weight: 500;
    font-size: 1.125rem;
    display: block;
    padding: var(--space-sm) 0;
}

.topmybeauty-nav-mobile a.active {
    color: var(--topmybeauty-orange);
}

/* Hero Section */
.topmybeauty-hero {
    background-color: var(--topmybeauty-cream);
    padding: var(--space-xl) 0;
}

.topmybeauty-hero-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.topmybeauty-hero-text {
    flex: 1;
}

.topmybeauty-hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: var(--topmybeauty-blue);
}

.topmybeauty-hero-text p {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.topmybeauty-hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.topmybeauty-hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.topmybeauty-features {
    padding: var(--space-xl) 0;
}

.topmybeauty-section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.topmybeauty-section-title h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--topmybeauty-blue);
}

.topmybeauty-section-title p {
    font-size: 1.125rem;
    color: var(--topmybeauty-dark-gray);
}

.topmybeauty-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.topmybeauty-feature-card {
    background-color: var(--topmybeauty-white);
    padding: var(--space-lg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.topmybeauty-feature-card:hover {
    transform: translateY(-5px);
}

.topmybeauty-feature-icon {
    font-size: 2.5rem;
    color: var(--topmybeauty-orange);
    margin-bottom: var(--space-md);
}

.topmybeauty-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

/* Products Section */
.topmybeauty-products {
    padding: var(--space-xl) 0;
    background-color: var(--topmybeauty-gray);
}

.topmybeauty-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.topmybeauty-product-card {
    background-color: var(--topmybeauty-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.topmybeauty-product-card:hover {
    transform: translateY(-5px);
}

.topmybeauty-product-image {
    height: 200px;
    overflow: hidden;
}

.topmybeauty-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.topmybeauty-product-card:hover .topmybeauty-product-image img {
    transform: scale(1.05);
}

.topmybeauty-product-info {
    padding: var(--space-lg);
}

.topmybeauty-product-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.topmybeauty-product-info p {
    font-size: 0.875rem;
    color: var(--topmybeauty-dark-gray);
    margin-bottom: var(--space-md);
}

.topmybeauty-product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topmybeauty-price {
    font-weight: 700;
    font-size: 1.125rem;
}

/* Studio Section */
.topmybeauty-studio {
    padding: var(--space-xl) 0;
}

.topmybeauty-studio-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.topmybeauty-studio-text {
    flex: 1;
}

.topmybeauty-studio-text p {
    margin-bottom: var(--space-lg);
}

.topmybeauty-studio-features {
    margin-bottom: var(--space-lg);
}

.topmybeauty-studio-features li {
    margin-bottom: var(--space-sm);
}

.topmybeauty-studio-features i {
    color: var(--topmybeauty-orange);
    margin-right: var(--space-sm);
}

.topmybeauty-studio-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Preview Section */
.topmybeauty-blog-preview {
    padding: var(--space-xl) 0;
    background-color: var(--topmybeauty-gray);
}

.topmybeauty-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.topmybeauty-blog-card {
    background-color: var(--topmybeauty-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.topmybeauty-blog-card:hover {
    transform: translateY(-5px);
}

.topmybeauty-blog-image {
    height: 200px;
    overflow: hidden;
}

.topmybeauty-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.topmybeauty-blog-card:hover .topmybeauty-blog-image img {
    transform: scale(1.05);
}

.topmybeauty-blog-info {
    padding: var(--space-lg);
}

.topmybeauty-blog-date {
    display: block;
    font-size: 0.875rem;
    color: var(--topmybeauty-dark-gray);
    margin-bottom: var(--space-sm);
}

.topmybeauty-blog-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.topmybeauty-blog-info p {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.topmybeauty-view-all {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Gallery Section */
.topmybeauty-gallery {
    padding: var(--space-xl) 0;
}

.topmybeauty-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
}

.topmybeauty-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 250px;
}

.topmybeauty-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.topmybeauty-gallery-item:hover img {
    transform: scale(1.05);
}

/* Health Section */
.topmybeauty-health {
    padding: var(--space-xl) 0;
    background-color: var(--topmybeauty-gray);
}

.topmybeauty-health-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.topmybeauty-health-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.topmybeauty-health-text {
    flex: 1;
}

.topmybeauty-health-text p {
    margin-bottom: var(--space-lg);
}

.topmybeauty-health-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.topmybeauty-health-stat {
    text-align: center;
    padding: var(--space-md);
    background-color: var(--topmybeauty-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.topmybeauty-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--topmybeauty-orange);
    margin-bottom: var(--space-xs);
}

.topmybeauty-stat-text {
    font-size: 0.875rem;
}

/* Video Section */
.topmybeauty-video {
    padding: var(--space-xl) 0;
}

.topmybeauty-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.topmybeauty-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Call to Action */
.topmybeauty-cta {
    padding: var(--space-xl) 0;
    background-color: var(--topmybeauty-blue);
    color: var(--topmybeauty-white);
}

.topmybeauty-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.topmybeauty-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.topmybeauty-cta-content p {
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

/* Footer */
.topmybeauty-footer {
    padding-top: var(--space-xl);
    background-color: var(--topmybeauty-black);
    color: var(--topmybeauty-white);
}

.topmybeauty-footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.topmybeauty-footer-logo {
    flex: 1;
    min-width: 250px;
}

.topmybeauty-footer-logo h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--topmybeauty-orange);
}

.topmybeauty-footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.topmybeauty-footer-column {
    flex: 1;
    min-width: 150px;
}

.topmybeauty-footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--topmybeauty-orange);
}

.topmybeauty-footer-column ul li {
    margin-bottom: var(--space-sm);
}

.topmybeauty-footer-column a:hover {
    color: var(--topmybeauty-orange);
}

.topmybeauty-footer-column i {
    margin-right: var(--space-sm);
    color: var(--topmybeauty-orange);
}

.topmybeauty-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.topmybeauty-footer-bottom p {
    font-size: 0.875rem;
}

.topmybeauty-social {
    display: flex;
    gap: var(--space-md);
}

.topmybeauty-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.topmybeauty-social a:hover {
    background-color: var(--topmybeauty-orange);
    transform: translateY(-3px);
}

/* Privacy Policy Popup */
.topmybeauty-privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--topmybeauty-dark-gray);
    color: var(--topmybeauty-white);
    padding: var(--space-md);
    z-index: 1000;
    display: none;
}

.topmybeauty-privacy-popup.show {
    display: block;
}

.topmybeauty-privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.topmybeauty-privacy-content p {
    flex: 1;
}

.topmybeauty-privacy-content a {
    color: var(--topmybeauty-orange);
    text-decoration: underline;
}

/* Subpage Styles */
.topmybeauty-page-header {
    background-color: var(--topmybeauty-cream);
    padding: var(--space-xl) 0;
    text-align: center;
}

.topmybeauty-page-header h1 {
    font-size: 3rem;
    color: var(--topmybeauty-blue);
    margin-bottom: var(--space-md);
}

.topmybeauty-page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.topmybeauty-page-content {
    padding: var(--space-xl) 0;
}

/* Contact Page */
.topmybeauty-contact-content {
    display: flex;
    gap: var(--space-xl);
}

.topmybeauty-contact-form {
    flex: 1;
}

.topmybeauty-contact-info {
    flex: 1;
}

.topmybeauty-form-group {
    margin-bottom: var(--space-md);
}

.topmybeauty-form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.topmybeauty-form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

textarea.topmybeauty-form-control {
    min-height: 150px;
    resize: vertical;
}

.topmybeauty-contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--topmybeauty-blue);
}

.topmybeauty-contact-details {
    margin-bottom: var(--space-lg);
}

.topmybeauty-contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.topmybeauty-contact-icon {
    margin-right: var(--space-md);
    font-size: 1.25rem;
    color: var(--topmybeauty-orange);
}

.topmybeauty-map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

/* Blog Page */
.topmybeauty-blog-full {
    padding: var(--space-xl) 0;
}

.topmybeauty-blog-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.topmybeauty-blog-full-card {
    background-color: var(--topmybeauty-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.topmybeauty-blog-full-card:hover {
    transform: translateY(-5px);
}

.topmybeauty-blog-full-image {
    height: 250px;
    overflow: hidden;
}

.topmybeauty-blog-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.topmybeauty-blog-full-card:hover .topmybeauty-blog-full-image img {
    transform: scale(1.05);
}

.topmybeauty-blog-full-info {
    padding: var(--space-lg);
}

.topmybeauty-blog-full-date {
    display: block;
    font-size: 0.875rem;
    color: var(--topmybeauty-dark-gray);
    margin-bottom: var(--space-sm);
}

.topmybeauty-blog-full-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.topmybeauty-blog-full-info p {
    margin-bottom: var(--space-lg);
}

/* Thank You Page */
.topmybeauty-thank-you {
    text-align: center;
    padding: var(--space-xl) 0;
}

.topmybeauty-thank-you-icon {
    font-size: 5rem;
    color: var(--topmybeauty-orange);
    margin-bottom: var(--space-lg);
}

.topmybeauty-thank-you h1 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    color: var(--topmybeauty-blue);
}

.topmybeauty-thank-you p {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: 1.125rem;
}

/* Terms & Privacy Policy */
.topmybeauty-legal {
    padding: var(--space-xl) 0;
}

.topmybeauty-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.topmybeauty-legal-content h2 {
    font-size: 1.75rem;
    margin: var(--space-lg) 0 var(--space-md);
    color: var(--topmybeauty-blue);
}

.topmybeauty-legal-content h3 {
    font-size: 1.25rem;
    margin: var(--space-md) 0;
    color: var(--topmybeauty-blue);
}

.topmybeauty-legal-content p,
.topmybeauty-legal-content ul {
    margin-bottom: var(--space-md);
}

.topmybeauty-legal-content ul {
    padding-left: var(--space-lg);
    list-style-type: disc;
}

.topmybeauty-legal-content ul li {
    margin-bottom: var(--space-sm);
}

.topmybeauty-legal-updated {
    margin-bottom: var(--space-lg);
    font-style: italic;
    color: var(--topmybeauty-dark-gray);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .topmybeauty-hero-text h2 {
        font-size: 2.5rem;
    }

    .topmybeauty-section-title h2 {
        font-size: 2rem;
    }

    .topmybeauty-hero-content,
    .topmybeauty-studio-content,
    .topmybeauty-health-content {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .topmybeauty-hero-image,
    .topmybeauty-studio-image,
    .topmybeauty-health-image {
        width: 100%;
    }

    .topmybeauty-contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .topmybeauty-nav-desktop {
        display: none;
    }

    .topmybeauty-burger-menu {
        display: block;
    }

    .topmybeauty-hero-text h2 {
        font-size: 2rem;
    }

    .topmybeauty-hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .topmybeauty-btn {
        width: 100%;
    }

    .topmybeauty-hero-image {
        margin-top: var(--space-lg);
    }

    .topmybeauty-cta-content h2 {
        font-size: 1.75rem;
    }

    .topmybeauty-footer-content {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .topmybeauty-footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .topmybeauty-privacy-content {
        flex-direction: column;
        text-align: center;
    }

    .topmybeauty-page-header h1 {
        font-size: 2rem;
    }

    /* Smaller logo on tablets */
    .topmybeauty-logo h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .topmybeauty-hero-text h2 {
        font-size: 1.75rem;
    }

    .topmybeauty-section-title h2 {
        font-size: 1.5rem;
    }

    .topmybeauty-feature-card,
    .topmybeauty-product-card,
    .topmybeauty-blog-card {
        padding: var(--space-md);
    }

    .topmybeauty-feature-icon {
        font-size: 2rem;
    }

    .topmybeauty-feature-card h3 {
        font-size: 1.25rem;
    }

    .topmybeauty-health-stats {
        grid-template-columns: 1fr;
    }

    .topmybeauty-thank-you h1 {
        font-size: 2rem;
    }

    /* Smaller logo on mobile phones */
    .topmybeauty-logo h1 {
        font-size: 1.25rem;
    }
}