/* Global Variables */
:root {
    --color-primary: #f4e6e6; /* Light pastel pink */
    --color-secondary: #e8f4f3; /* Light pastel mint */
    --color-accent: #f3e8f4; /* Light pastel lavender */
    --color-text: #333333;
    --color-light-text: #666666;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-secondary);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-light-text);
}

/* Header */
header {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo a {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

nav ul li a {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--color-primary);
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ebd9d9;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    padding-right: 3rem;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

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

/* CV Section */
.cv-section {
    max-width: 800px;
    margin: 0 auto;
}

.cv-item {
    margin-bottom: 2rem;
}

.cv-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cv-item p {
    margin-bottom: 0.5rem;
}

.cv-date {
    font-style: italic;
    color: var(--color-light-text);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

textarea {
    min-height: 150px;
}

/* VA Dancewear */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.project-item {
    position: relative;
    overflow: hidden;
}

.project-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

/* Privacy Policy */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    margin-top: 2rem;
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.footer-nav a {
    margin-right: 1.5rem;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--color-light-text);
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-nav {
        margin-bottom: 1rem;
    }
} 