:root {
  --brand-primary: #3B4D61;       
  --brand-accent: #D4A373;        
  --background-light: #FAF4EF;    
  --text-color: #2D2D2D;          
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Inter', sans-serif;
}


body {
  font-family: var(--body-font);
  background-color: var(--background-light);
  color: var(--text-color);
  margin: 0;
  line-height: 1.6;
  scroll-behavior: smooth; 
  
}
html body {overflow-x: hidden;}
* {
  box-sizing: border-box;
}

body, html {
  max-width: 100%;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5 {
  font-family: var(--heading-font);
  color: var(--brand-primary);
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: var(--brand-primary); 
}

.navbar {
  padding: 1rem 0;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.25rem;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #0d6efd;
}

.navbar-nav .nav-link {
  color: #333;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0d6efd;
  font-weight: 600;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-light.bg-light {
  background-color: #ffffff;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.footer .email-link a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer .email-link a:hover {
  color: var(--brand-accent);
  text-decoration: underline;
}

.footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer .social-icons a {
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-icons a:hover {
  transform: scale(1.2);
  color: var(--brand-accent);
}

.footer-credit {
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  background: linear-gradient(135deg, #f2f7ff, #ffffff);
  padding: 60px 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p.lead {
  font-size: 1.2rem;
  color: #555;
}

.hero-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--brand-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  font-weight: 600;
  color: #fff;
}

.btn-primary:hover {
  background-color: #382c5c;
  border-color: #382c5c;
}

.btn-branding-outline {
  color: var(--brand-primary);
  padding: 10px 20px;
  font-size: 16px;
  border: 2px solid var(--brand-primary);
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-branding-outline:hover {
  background-color: var(--brand-primary);
  color: #fff;
}

.about-section {
  background-color: #fff;
  padding: 60px 0;
  width: 100%;
max-width: 100%;
}

.about-section h1 {
  font-size: 2.5rem;
}

.about-section h2 {
  font-size: 1.5rem;
  color: var(--brand-accent);
  margin-top: 20px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 20px;
}

.about-section .btn {
  background-color: var(--brand-primary);
  color: #fff;
  padding: 10px 24px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.about-section .btn:hover {
  background-color: #382c5c;
}

.about-section img {
  max-width: 300px;
  border: 5px solid var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.projects-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.projects-section h1,
.projects-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.projects-section p.lead {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.project-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  width: 100%;
max-width: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.project-card img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.project-card .card-body {
  padding: 20px;
}

.project-card .card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.project-card .card-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-card .btn {
  margin-right: 10px;
  font-weight: 600;
}

.btn-outline-primary {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-outline-primary:hover {
  background-color: var(--brand-primary);
  color: #fff;
}

.btn-outline-secondary {
  color: var(--brand-accent);
  border-color: var(--brand-accent);
}

.btn-outline-secondary:hover {
  background-color: var(--brand-accent);
  color: #fff;
}

.contact-section {
  padding: 60px 0;
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.contact-section .form-label {
  font-weight: 600;
  color: var(--brand-primary);
}

.contact-section .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-section .btn-primary {
  background-color: var(--brand-primary);
  border: none;
  padding: 10px 24px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-section .btn-primary:hover {
  background-color: #382c5c;
}

.footer {
  background-color: var(--brand-primary);
  color: #fff;
  padding: 40px 0 20px;
  font-family: var(--body-font);
  animation: fadeInUp 1s ease-in-out;
}

footer i {
  color: var(--brand-accent);
  transition: transform 0.3s ease;
  margin-left: 10px;
}

footer i:hover {
  transform: scale(1.2);
}


@media (max-width: 768px) {
  .navbar-nav .nav-link {
    margin-left: 0.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .about-section img,
  .projects-section img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }
  .btn-primary {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .container,
  .row {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
 