/*
Theme Name: Dallas Budongsan
Theme URI: https://dallasbudongsan.com/
Author: Your Name
Author URI: https://dallasbudongsan.com/
Description: Custom theme for Limvesting real estate company
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Dallas Budongsan
Tags: custom-background, custom-logo, custom-menu, featured-images
*/

/* 이 파일에는 최소한의 스타일만 넣고 나머지는 css/main.css에 넣을 예정입니다 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #fff;
  --secondary-color: #666;
  --black: #000000;
  --light-blue: #2c3e50;
  --white: #ffffff;
  --light-gray: #fefefe;
  --gray: #666;
  --font-primary: 'Outfit', 'Marcellus', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


html { overflow-y: scroll; 
}
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* 버튼 스타일 */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--secondary-color);
}
.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: var(--primary-color);
}
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}