* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


body {
    background: #0a0a0f;
    color: #fff;
}

.container {
    width: 85%;
    margin: auto;
}

html {
    scroll-behavior: smooth;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
}

/*--------------------------Navbar--------------------------*/
.navbar {
    display: flex;
    align-items: center;
    padding: 0px 1px;
}

.logo {
    height: 70px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-left: auto;
    /* MENÜYÜ SAĞA ATIYOR */
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #c46062;
}


/*--------------------------Anasayfa--------------------------*/

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Videoyu ekrana tam yayar */
    z-index: -1;
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}


.hero h2 {
    font-size: 60px;
    font-weight: 700;
}

.hero span {
    color: #c46062;
}

.hero p {
    margin: 20px 0;
    opacity: 0.8;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-primary {
    background: #c46062;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #c46062;
}

.btn-outline {
    border: 2px solid #c46062;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: #c46062;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #c46062;
    color: white;
}


/*--------------------------Hizmetler--------------------------*/
.services {
    padding: 100px 0;
    background: #0f0f14c4;
}

.services-title {
    background: #000;
    padding: 10px;
    margin: 30px;
    text-align: center;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.services-title h2 {
    color: white;
    font-size: 34px;
    letter-spacing: 1px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    height: 300px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;

    display: block;
    text-decoration: none;
    color: white;
}



.service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    transition: 0.4s;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item:hover::before {
    background: linear-gradient(to top, rgba(196, 96, 98), rgba(0, 0, 0, 0.4));
}

.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 14px;
    opacity: 0.85;
}

.service-card {
  height: 300px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* karartma */
}

.service-card h3 {
  position: relative;
  z-index: 2;
}

.ayna {
  background-image: url("cam27.jpeg");
}

.cadir {
  background-image: url("cadir.jpeg");
}

.cam {
  background-image: url("ayna4.jpeg");
}

.oval {
  background-image: url("oval7.jpeg");
}

.sahne {
  background-image: url("sahne4.jpeg");
}

.obs {
  background-image: url("obs2.jpeg");
}

.tribun {
  background-image: url("tri6.jpeg");
}

.dans {
  background-image: url("dans4.jpeg");
}

.dugun {
  background-image: url("du1.jpeg");
}

.proje {
  background-image: url("proje.jpeg");
}

.konser {
  background-image: url("konser1.jpeg");
}

.havuz {
  background-image: url("havuz3.jpeg");
}

.vinil {
  background-image: url("vinil2.jpeg");
}

.hali {
  background-image: url("perde4.jpeg");
}

.nikah {
  background-image: url("nikah.jpeg");
}

.tunel {
  background-image: url("tun3.jpeg");
}

.sedir {
  background-image: url("sedir3.jpeg");
}

.podyum {
  background-image: url("podyum8.jpeg");
}

.detail-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: #111;
}

.gallery {
    padding: 100px 6%;
    background: #0f0f0f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* Dip dibe olmasını engeller */
}

.media {
    border-radius: 15px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
}

.media img,
.media video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.media:hover {
    transform: translateY(-8px);
}

.media:hover img,
.media:hover video {
    transform: scale(1.05);
}


/*--------------------------Projeler--------------------------*/

.card {
    background: rgba(196, 96, 98, 0.05);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 15px;
    transition: 0.4s;
    border: 1px solid rgba(196, 96, 98, 0.1);
}

.card:hover {
    transform: translateY(-15px);
    border: 1px solid #c46062;
}

.section-title {
    background: #000;
    padding: 10px;
    margin: 30px;
    text-align: center;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.section-title h2 {
    color: white;
    font-size: 34px;
    letter-spacing: 1px;
}

.projects {
    padding: 80px 8%;
    background: #111;
    color: white;
}

.projects h2 {
    text-align: center;
    margin-bottom: 50px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
}

.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(196, 96, 98, 0.6);
    color: white;
}


/*--------------------------Hakkımızda--------------------------*/
.about {
    background: #0f0f0f;
    color: white;
    padding: 100px 8%;
}

.about-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 48px;
    margin: 0;
}

.about-line {
    width: 60px;
    height: 4px;
    background: #c46062;
    /* kırmızı vurgu */
    margin-top: 15px;
}

.about-right {
    flex: 2;
}

.about-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #ccc;
}

.about-stats {
    display: flex;
    gap: 60px;
}

.about-stats h3 {
    font-size: 36px;
    margin: 0;
    color: white;
}

.about-stats span {
    color: #aaa;
    font-size: 14px;
}


/*--------------------------İletişim--------------------------*/

.contact {
    padding: 120px 8%;
    background: #0f0f0f;
    color: white;
}

.contact-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #aaa;
    margin-bottom: 40px;
}

.info-box {
    margin-bottom: 30px;
}

.info-box h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: #c46062;
}

.info-box a {
    color: #ddd;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.info-box a:hover {
    color: #c46062;
}

.contact-form {
    flex: 1;
    background: #111;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(225, 6, 0, 0.2);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: #1c1c1c;
    border: 1px solid #333;
    color: white;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c46062;
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.4);
    outline: none;
}

.contact-form button {
    padding: 15px;
    background: #c46062;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #c46062;
    transform: translateY(-3px);
}