/* Base Styles & Variables */
:root {
    --primary-color: #D72638;
    --secondary-color: #1a1a1a;
    --accent-color: #e6c892;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-text: #1a1a1a;
    --light-bg: #ffffff;
    --dark-bg: #1a1a1a;
    --gray-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FFC107;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: all 0.3s ease;
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul, ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 3px;
    background-color: var(--primary-color);
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    background-color: var(--light-bg);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 5rem;
    width: auto;
}

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

nav ul li {
    margin-left: 3rem;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 15rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 6rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.hero p {
    font-size: 2.4rem;
    max-width: 70rem;
    margin: 0 auto 4rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.6rem;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn.primary:hover {
    background-color: var(--accent-color);
}

.btn.secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
}

.btn.tertiary {
    background-color: var(--gray-bg);
    color: var(--secondary-color);
}

.btn.tertiary:hover {
    background-color: var(--border-color);
}

/* Services Section */
.services {
    padding: 10rem 0;
    background-color: var(--light-bg);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
}

.service-card {
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .icon {
    background-color: var(--primary-color);
    color: var(--light-text);
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-card h3 {
    margin-bottom: 1.5rem;
}

/* Featured Models Section */
.featured-models {
    padding: 10rem 0;
    background-color: var(--gray-bg);
}

.model-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.model-card {
    background-color: var(--light-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.model-card img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
}

.model-card h3 {
    padding: 2rem 2rem 0.5rem;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.model-card p {
    padding: 0 2rem 2rem;
    color: #666;
}

/* Latest Posts Section */
.latest-posts {
    padding: 10rem 0;
    background-color: var(--light-bg);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.post-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background-color: var(--light-bg);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.post-card img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 2rem;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 1rem;
}

.view-all {
    text-align: center;
}

/* Terminology Section */
.terminology {
    padding: 8rem 0;
    background-color: var(--gray-bg);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.term-card {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.term-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.term-card p {
    margin-bottom: 0;
}

/* Clients Section */
.clients {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.client-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.client-logo {
    flex: 1;
    min-width: 15rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover {
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 8rem 0 4rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.footer-column p,
.footer-column address p {
    color: #aaa;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: #666;
    margin: 0;
}

.date-time {
    margin-top: 2rem;
    color: #aaa;
    font-size: 1.4rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Page Banners */
.page-banner {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 8rem 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 2rem;
    max-width: 70rem;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-content {
    padding: 8rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 4rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background-color: var(--light-bg);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 25rem;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-details {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-details .date {
    color: #666;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: block;
}

.blog-details h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.blog-details p {
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Blog Post Styles */
.blog-post {
    padding: 8rem 0;
}

.post-header {
    margin-bottom: 4rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.back-link svg {
    margin-right: 0.8rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: #666;
}

.post-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.author-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.post-featured-image {
    margin-bottom: 4rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    max-width: 80rem;
    margin: 0 auto 5rem;
}

.post-content h2 {
    margin-top: 4rem;
}

.post-content h3 {
    margin-top: 3rem;
    font-size: 2.2rem;
}

.post-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 3rem 0;
}

.post-image-gallery {
    margin: 3rem 0;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

blockquote {
    margin: 3rem 0;
    padding: 2rem 3rem;
    border-left: 5px solid var(--primary-color);
    background-color: var(--gray-bg);
    font-style: italic;
    font-size: 1.8rem;
    color: #555;
}

blockquote p:last-child {
    margin-bottom: 0;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 5rem;
}

.post-tags span,
.post-share span {
    font-weight: 600;
    margin-right: 1rem;
}

.post-tags a {
    display: inline-block;
    margin-right: 1rem;
    background-color: var(--gray-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    color: #666;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.post-share {
    display: flex;
    align-items: center;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--gray-bg);
    color: #666;
    margin-left: 1rem;
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.related-posts {
    margin-bottom: 5rem;
}

.related-posts h3 {
    margin-bottom: 3rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.related-post {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background-color: var(--light-bg);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-post img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.related-post h4 {
    padding: 2rem 2rem 1rem;
    font-size: 1.8rem;
}

.related-post .read-more {
    padding: 0 2rem 2rem;
    display: inline-block;
}

/* About Page Styles */
.about-content {
    padding: 8rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-mission {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 8rem;
}

.team-section {
    margin-bottom: 8rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 5px solid var(--primary-color);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.values-section {
    margin-bottom: 8rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.value-card {
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-card .icon {
    background-color: var(--primary-color);
    color: var(--light-text);
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.value-card h3 {
    margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2,
.contact-form-container h2 {
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2.5rem;
}

.contact-item .icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(217, 169, 103, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: #666;
}

.social-contact h3 {
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--light-bg);
    padding: 4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group .required {
    color: var(--error-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(217, 169, 103, 0.2);
}

.form-group button {
    width: 100%;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--light-bg);
    margin: 10% auto;
    padding: 2rem;
    border-radius: var(--radius-md);
    max-width: 50rem;
    width: 90%;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 2.8rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--secondary-color);
}

.modal-body {
    padding: 3rem;
    text-align: center;
}

.modal-body svg {
    color: var(--success-color);
    margin-bottom: 2rem;
    width: 6rem;
    height: 6rem;
}

.modal-body h2 {
    margin-bottom: 2rem;
}

.modal-body p {
    margin-bottom: 3rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    header {
        height: auto;
        padding: 2rem 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1.5rem;
    }
    
    .hero {
        padding: 10rem 0;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 2rem;
    }
    
    .post-tags, .post-share {
        width: 100%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .hero p {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
