/* Wejdan Studio - Main Stylesheet */

/* Custom Fonts */
@font-face {
    font-family: 'Akhbar';
    src: url('../fonts/AKHBR.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Akhbar';
    src: url('../fonts/AKHBRBD.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Bodoni 72 Smallcaps';
    src: url('../fonts/bodoni-72-smallcaps-book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Madelinette';
    src: url('../fonts/Madelinette400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

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

:root {
    --primary-color: #eae5dd;
    --accent-color: #8B7355;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
}

body {
    font-family: 'Akhbar', 'Cairo', 'Tajawal', sans-serif;
    background-image: url('../images/Background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-dark);
    line-height: 1.6;
    direction: rtl;
}

/* Navigation Bar */
.navbar {
    background: rgba(234, 229, 221, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
    border-radius: 20px;
    margin-bottom: 3rem;
}

/* Section Divider */
.divider {
    text-align: center;
    margin: 3rem 0;
}

.divider img {
    max-width: 300px;
    height: auto;
    opacity: 0.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #6d5940;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-whatsapp {
    background: #c9a86a;
}

.btn-whatsapp:hover {
    background: #b8935a;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Cards */
.card {
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: rgba(139, 115, 85, 0.95);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
}



/* Heading Styles with Custom Fonts */
h1, h2 {
    font-family: 'Madelinette', 'Akhbar', serif;
}

h3 {
    font-family: 'Bodoni 72 Smallcaps', 'Akhbar', serif;
}

.hero-content h1 {
    font-family: 'Madelinette', 'Akhbar', serif;
}



/* Packages Grid Layout */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.package-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.package-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-content {
    padding: 2rem;
    text-align: center;
}

.package-content h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.package-content .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-image {
        height: 220px;
    }
    
    .package-content {
        padding: 1.5rem;
    }
}



/* Mobile Navigation Menu (Hamburger) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle:focus {
    outline: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 90px);
        background: rgba(234, 229, 221, 0.98);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
    }
}


/* Mobile Welcome Section */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 1rem !important;
    }
    
    .welcome-subtitle {
        font-size: 1rem !important;
    }
    
    .welcome-text {
        font-size: 0.8rem !important;
    }
}

