/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --color-primary: rgba(234, 81, 131, 1);
    --color-primary-hover: rgba(214, 61, 111, 1);
    --color-secondary: #fff;
    --color-text-dark: #000;
    --color-text-gray: rgba(85, 85, 85, 1);
    --color-text-light-gray: rgba(93, 116, 138, 1);
    --color-border: rgba(215, 219, 224, 1);
    --color-bg-light: rgba(245, 245, 245, 1);
    --color-love: rgba(234, 81, 131, 1);
    
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-condensed: 'DIN Pro Cond', sans-serif;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 50px;
    
    /* Container */
    --container-max-width: 1650px;
    --container-padding: 32px;
    --container-padding-mobile: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 5px 15px rgba(234, 81, 131, 0.3);
}

/* ===== FONTS ===== */
@font-face {
    font-family: 'DIN Pro Cond';
    src: url('../fonts/DINPro-CondensedMedium.woff2') format('woff2'),
         url('../fonts/DINPro-CondensedMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Pro Cond';
    src: url('../fonts/DINPro-CondensedBold.woff2') format('woff2'),
         url('../fonts/DINPro-CondensedBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Pro';
    src: url('../fonts/dinpro_medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
         url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
         url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
         url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    overflow-x: hidden;
    background: var(--color-secondary);
    line-height: 1.6;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, li {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-family: var(--font-condensed);
    font-size: 48px;
    font-weight: var(--font-semibold);
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    font-family: var(--font-condensed);
    font-weight: var(--font-semibold);
    line-height: 1.3;
}

h3 {
    font-size: 32px;
    font-family: var(--font-condensed);
    font-weight: var(--font-medium);
    line-height: 1.3;
}

h4 {
    font-size: 24px;
    font-family: var(--font-condensed);
    font-weight: var(--font-medium);
    line-height: 1.4;
}

h5 {
    font-size: 20px;
    font-family: var(--font-condensed);
    font-weight: var(--font-medium);
    line-height: 1.4;
}

h6 {
    font-size: 18px;
    font-family: var(--font-condensed);
    font-weight: var(--font-medium);
    line-height: 1.4;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

.thin-text {
    font-weight: var(--font-light);
}

.love-text {
    color: var(--color-love);
    font-weight: var(--font-bold);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--color-primary);
    color: var(--color-secondary);
    font-weight: var(--font-bold);
    padding: 18px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    text-align: center;
    font-size: 16px;
    display: inline-block;
    border: none;
    cursor: pointer;
    margin-top: 19px;
	width: 300px;
	line-height: 1;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-text-dark);
    font-weight: var(--font-bold);
    padding: 16px 55px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    text-align: center;
    font-size: 16px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== SECTIONS ===== */
section {
    width: 100%;
    overflow: hidden;
}

.section-padding {
    padding: var(--spacing-xxl) 0;
}

/* ===== FORM ELEMENTS ===== */


textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

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

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

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* ===== WORDPRESS CORE ===== */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media screen and (max-width: 1024px) {
    :root {
        --container-padding: 40px;
    }
    
    h1 { font-size: 40px; }
    h2 { font-size: 34px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
}

@media screen and (max-width: 768px) {
    :root {
        --container-padding: var(--container-padding-mobile);
        --spacing-xl: 40px;
        --spacing-xxl: 50px;
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 40px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --container-padding: var(--container-padding-mobile);
    }
    
    .container {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }
    
    p {
        font-size: 14px;
    }
}
