/* ==========================================================
   1. GLOBAL RESET & BASE LAYOUT
   ========================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    height: auto;
    min-height: 100%;
}

body {
    height: 100%;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background-color: #fafbfc; /* Soft off-white */
    color: #334155; /* Soft slate text */
    padding: 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


#letters{
  height: 200px;
  width: 150px;
}
/* ==========================================================
   2. TYPOGRAPHY & HEADINGS (Soft Rose & Mint Focus)
   ========================================================== */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.brand-title {
    font-size: 3rem;
    color: #f472b6; /* Soft Blush Pink */
    letter-spacing: 1px;
}

h2 {
    font-size: 2rem;
    color: #10b981; /* Soft Emerald / Mint Green */
    border-bottom: 2px solid #fbcfe8; /* Light pastel pink line */
    padding-bottom: 5px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.4rem;
    color: #f472b6; /* Soft Blush Pink */
}

/* Header & Subtitles */
.site-header {
    text-align: center;
    padding: 20px 0;
}

.brand-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
}

.location-tag {
    font-style: italic;
    color: #f472b6;
    margin-top: 5px;
    font-weight: 500;
}

/* ==========================================================
   3. NAVIGATION
   ========================================================== */
.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 20px 0 40px;
    border-top: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    padding: 12px 0;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #f472b6;
}

/* ==========================================================
   4. CONTENT SECTIONS & CARDS
   ========================================================== */
section {
    margin-bottom: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(244, 114, 182, 0.08); /* Gentle pink glow */
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.portfolio-category {
    background: #ecfdf5; /* Gentle mint background */
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
}

.image-container img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin: 10px 0;
}

/* ==========================================================
   5. TABLES & POLICY BOXES
   ========================================================== */
.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.rates-table th, .rates-table td {
    border: 1px solid #e2e8f0;
    padding: 12px;
    text-align: left;
}

.rates-table th {
    background-color: #d1fae5; /* Light mint header */
    color: #065f46;
    font-weight: bold;
}

.mediums-list {
    margin-top: 15px;
    padding-left: 20px;
}

.mediums-list li {
    margin-bottom: 5px;
}

/* Policy Box */
.policy-box {
    background-color: #fdf2f8; /* Gentle rose background */
    border-left: 4px solid #f472b6; /* Soft pink accent bar */
    padding: 18px 20px;
    border-radius: 0 8px 8px 0;
}

.policy-box ul {
    padding-left: 20px;
}

.policy-box li {
    margin-bottom: 10px;
}

/* Contact Button */
.btn {
    display: inline-block;
    background-color: #f472b6;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
    background-color: #34d399; /* Smooth shift to soft mint */
    color: #064e3b;
    transform: translateY(-1px);
}

/* ==========================================================
   6. FOOTER
   ========================================================== */
.site-footer {
    flex-shrink: 0;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 2px solid #e2e8f0;
    font-weight: 500;
    font-size: 0.85rem;
    color: #64748b;
}