/* Import Google Fonts - Only Cormorant and EB Garamond */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700;800&display=swap');

/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles - Cormorant as default */
body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    overflow-x: hidden;
    font-family: 'Cormorant', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

/* Cormorant for all titles and headings */
h1, h2, h3, h4, h5, h6, .title, .box-title, .header h1 {
    font-family: 'Cormorant', 'Georgia', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* EB Garamond for body text, descriptions, and paragraphs */
p, .description, .box-description, .text-content, .header p {
    font-family: 'EB Garamond', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.7;
    color: #666;
}

/* Buttons and interactive elements use Cormorant */
button, .button, .back-button {
    font-family: 'Cormorant', serif;
}

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