/*
Theme Name: Makeup Artistry by Shouvrina
Theme URI: https://www.instagram.com/makeupartistrybyshouvrina/
Author: Shouvrina K
Author URI: https://www.instagram.com/makeupartistrybyshouvrina/
Description: Custom WordPress theme for bridal & makeup artist portfolio, East London UK
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shouvrina-makeup
Domain Path: /languages
Tags: portfolio, bridal, makeup, responsive, custom-colors, custom-menu, featured-images
*/

/*------------------------------------
CSS Variables & Base Reset
------------------------------------*/
:root {
    --color-primary: #b76e79;
    --color-primary-dark: #9a555f;
    --color-primary-light: #f8e8eb;
    --color-secondary: #2d2d2d;
    --color-text: #4a4a4a;
    --color-text-light: #7a7a7a;
    --color-white: #ffffff;
    --color-light: #f9f5f6;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --font-main: 'Segoe UI', 'Poppins', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--color-primary-dark); }

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--color-primary-light);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
}

.btn:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* WordPress Core Classes */
.alignleft { float: left; margin: 0 1rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.9rem; color: var(--color-text-light); text-align: center; padding: 0.5rem 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Responsive Base */
@media (max-width: 768px) {
    html { font-size: 15px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .section { padding: 3.5rem 0; }
}