/* Font Faces */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo/Cairo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo/Cairo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo/Cairo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'CaesarDressing';
    src: url('../fonts/CaesarDressing/CaesarDressing-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Global Styles */
body {
    overflow-x: hidden;
    background-color: #F9FAFB;
    font-family: 'Cairo', sans-serif;
}

/* Colors */
:root {
    --primary-color: #F8CB2E;
    --secondary-color: #B22727;
    --dark-brown: #2C1810;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --light-gray: #F9FAFB;
}

/* Typography */
.text-sm {
    font-size: 12px !important
}

.text-md {
    font-size: 14px !important
}

.text-lg {
    font-size: 16px !important
}

.text-xl {
    font-size: 18px !important
}

.text-2xl {
    font-size: 20px !important
}

.text-3xl {
    font-size: 32px !important
}

.text-4xl {
    font-size: 36px !important
}

.text-5xl {
    font-size: 64px !important
}

.font-weight-light {
    font-weight: 300 !important
}
.font-weight-bold {
    font-weight: 700 !important
}

.z-1 {
    z-index: 1 !important
}

.z-2 {
    z-index: 2 !important
}


.z-4 {
    z-index: 4 !important
}


/* Dream Title Style */
.dream-title {
    color: var(--primary-color);
    font-size: 64px;
    letter-spacing: 5px;
    font-weight: bold;
    font-family: 'CaesarDressing', sans-serif;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #EE5007;
    text-shadow:
        -1px -1px 0 #EE5007,
        1px -1px 0 #EE5007,
        -1px 1px 0 #EE5007,
        1px 1px 0 #EE5007,
        inset 2px 2px 0 #EE5007;
}

/* Layout */
.container {
    position: relative;
    max-width: 1440px;
    padding: 0 40px;
}

.layout-wrapper {
    background: #000000c7;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Spacing */
.p-32 {
    padding: 32px !important
}

.pt-10 {
    padding-top: 10% !important
}

.pt-5 {
    padding-top: 5% !important
}

.section-padding {
    padding: 80px 0;
}

.section-margin {
    margin: 32px 0;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-weight: 600;
    color: var(--dark-brown);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e9bc20;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    color: var(--white);
}

/* Cards */
.card-base {
    border-radius: 25px;
    padding: 24px;
    box-shadow: 1px 1px 8px -4px var(--primary-color);
    margin-bottom: 10px;
}

.light-box {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: white;
    padding: 10px 12px;
    text-align: left;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

/* Form Elements */
.form-control {
    padding: 12px;
    border-radius: 16px;
    font-size: 14px;
    border: 1px solid #ddd;
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-dark {
    color: var(--dark-brown) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-gradient {
    background: linear-gradient(216deg, #EE5007 -100%, #1E1E1E 77%) !important;
}

.bg-dark {
    background-color: var(--dark-brown) !important;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.gap-28 {
    gap: 28px;
}

/* Grid Utilities */
.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.rounded-16 {
    border-radius: 16px !important;
}


/* Media Queries */
@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }

    .dream-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 40px 0;
    }
}

.youtube-footer img {
    width: 28%;
}











