/* ================================================
   BODRUM PET OTEL - KURUMSAL TEMA
   Profesyonel Mavi-Yeşil Renk Paleti
   ================================================ */

:root {
    --primary-blue: #2C5F8D;
    --secondary-green: #4A9B7F;
    --accent-gold: #D4A574;
    --dark-blue: #1a3a52;
    --light-blue: #E8F4F8;
    --ivory: #FAFAFA;
    --light-gray: #F5F5F5;
    --dark-text: #2c3e50;
    --gray: #6c757d;
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background: var(--ivory);
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
}

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

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar i {
    margin-right: 0.5rem;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    background: white !important;
    box-shadow: 0 2px 15px rgba(44,95,141,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    padding: 0.5rem 1.5rem !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.btn-rezervasyon {
    background: var(--secondary-green);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-rezervasyon:hover {
    background: #3d8269;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74,155,127,0.3);
}

/* ================================================
   PAGE HEADER
   ================================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 6rem 0 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* ================================================
   HERO
   ================================================ */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
}

.hero-slide {
    height: 700px;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-hero {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    margin-top: -50px;
    position: relative;
    z-index: 100;
}

.stat-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    color: var(--gray);
    margin-top: 0.5rem;
}

/* ================================================
   SECTIONS
   ================================================ */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.section-title .line {
    width: 80px;
    height: 4px;
    background: var(--secondary-green);
    margin: 1rem auto;
}

.about-section {
    background: var(--light-blue);
}

/* ================================================
   CARDS
   ================================================ */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(44,95,141,0.08);
    transition: all 0.3s;
    margin-bottom: 2rem;
    background: white;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(44,95,141,0.2);
}

.service-image,
.room-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.service-price,
.room-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-green);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44,95,141,0.3);
}

.btn-service {
    background: var(--secondary-green);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #3d8269;
    color: white;
}

/* ================================================
   ABOUT
   ================================================ */
.about-image {
    border-radius: 15px;
    height: 500px;
    background: linear-gradient(135deg, var(--light-blue), white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 10px 40px rgba(44,95,141,0.1);
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.about-list li i {
    color: var(--secondary-green);
    margin-right: 1rem;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
}

.testimonial-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* ================================================
   CTA
   ================================================ */
.cta-section {
    background: var(--light-gray);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.btn-cta {
    background: var(--secondary-green);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--primary-blue);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: #1a3a52;
    color: white;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--accent-gold);
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin: 0 0.5rem;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-green);
}

/* ================================================
   WHATSAPP
   ================================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* ================================================
   FORMS
   ================================================ */
.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(44,95,141,0.25);
}

/* ================================================
   BADGES
   ================================================ */
.badge-primary {
    background: var(--primary-blue);
    color: white;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    .hero-slider { height: 500px; }
    .hero-content h1 { font-size: 2.5rem; }
    .page-header h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }
    .about-image { height: 300px; font-size: 5rem; }
}
